In some of my figures, I have footnotes in the captions. Now I want to create a “Table of figures”, however, it seems the footnote will then also appear in the outline.
Is there a way, to remove the footnote from the outline, while still keeping it on the page of the figure?
Here is a piece of code, that recreates my issue.
#outline(
title: [Table of figures],
target: figure.where(kind: image),
//fill: none,
)
#pagebreak()
#figure(
image("placeholder.png"),
caption:[Test. #footnote[This appears on the 'Table of Figures' page as well.]]
)