How to start source count from a specific page?

Hey,
I am writing a research paper, which includes figures that contain sources in their caption as they are not my figures: e.g. “Level of Detail [1]”. As the list of figures is located before the introduction, the source count starts with the sources contained in the figures. I want them to start counting in the introduction. How can I fix that? The source in the figure should therefore not be “1” but whenever it comes in the text…

Thanks a lot!
King regards :)

Unfortunately, I can’t answer your exact question. This is a known issue #1880 which also affects footnotes. For now, I think most people worked around this issue by either just omitting the reference in the outline or by using an alternative caption (without references) for the outline.

Remove the reference:

#show outline.where(target: figure.where(kind: image)): it => {
  show cite: none
  it
}

#outline(target: figure.where(kind: image))

or alternative caption for the outline: How to have different text shown in figure caption and in outline? - #3 by flokl

1 Like

Oh that is unfortunate… But thank you, that helps already!