[Tex/LaTex] Pandoc / Markdown: References on last page

cross-referencingmarkdownpandocpdftex

Currently I am writing a document. And I have written most in Markdown with some embedded LaTeX.

Example reference

However, now all references are now placed on the page where they are defined. Is it possible to move all references to the last page? So I can have a "sources" section?

Best Answer

Pandoc can use a number file formats (.bib, .ris, etc.) to generate your bibliography. Have a look at the documentation here. You need to put a header like:

# References #

into your .md document and your references need to look like:

[^ref1]: See @Author1, p. 20.

As noted in the comments, you also need to include --filter pandoc-citeproc to generate the bibliography.