Replies: 1 comment 4 replies
-
I suspect the answer is this. The metadata fields are stored in a Data.Map.Map, and the map is not an ordered container, so the order in which the fields are parsed by the writer in populating template variables is not determinate. Unfortunately, this order affects the footnote order. I suppose we could try altering |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to use footnotes in a title block for things like acknowledgements and author affiliation. The following works fine for PDF, LaTeX, ODT:
With HTML, the footnote on the title is numbered 2, and the one on the author is numbered 1.
Is there a reason why it should/must be that way?
https://pandoc.org/try/?params=%7B%22text%22%3A%22%25+Title%5B%5Ea%5D%5Cn%25+Author%5B%5Eb%5D%5Cn%5Cn%5B%5Ea%5D%3A+A%5Cn%5B%5Eb%5D%3A+B%22%2C%22to%22%3A%22html5%22%2C%22from%22%3A%22markdown%22%2C%22standalone%22%3Atrue%2C%22embed-resources%22%3Afalse%2C%22table-of-contents%22%3Afalse%2C%22number-sections%22%3Afalse%2C%22citeproc%22%3Afalse%2C%22html-math-method%22%3A%22plain%22%2C%22wrap%22%3A%22auto%22%2C%22highlight-style%22%3Anull%2C%22files%22%3A%7B%7D%2C%22template%22%3Anull%7D
This is what the title block is now:
This is what it , presumably, should be:
Pandoc version 3.1.11.1
Beta Was this translation helpful? Give feedback.
All reactions