You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note how citationNoteNum jumps from 1 to 3, and the second citation gets note number 3.
Removing the reference See @foo prevents the problem. This bug leads to incorrect position calculation in citeproc and missing "ibid" in some cases.
The text was updated successfully, but these errors were encountered:
Background: syntactically, references to example list items
can't be distinguished from citations; we only know which they
are after we've parsed the whole document (and this is resolved
in the `runF` stage).
This means that pandoc's calculation of `citationNoteNum`
can sometimes be wrong when there are example list references.
This commit partially addresses #6836, but only for the case
where the example list references refer to list items defined
previously in the document.
The issue is partially resolved, but only for the case where the example list references refer to example list items earlier in the document (not later).
Example,
bug.md
:Output of
pandoc bug.md -t native
:Note how citationNoteNum jumps from 1 to 3, and the second citation gets note number 3.
Removing the reference
See @foo
prevents the problem. This bug leads to incorrect position calculation in citeproc and missing "ibid" in some cases.The text was updated successfully, but these errors were encountered: