I want to place my "list of figures" (lot) to the end of the document, but pandoc puts the lot by default at the beginning, directly after the toc.
My .md looks like this:
---
toc: true
lof: true
---
# Heading 1
Lorem ipsum…
# References
:::{#refs}
:::
Note how it ist possible to move the Bibliography with a div to the end of my document.
With the LaTex snippet
\addcontentsline{toc}{section}{List of Figures}
\listoffigures
the lof is moved, but only if converted as pdf.
Is there a solution to moving the lof to the end of a document, regardless of type (pdf, html...)?