The title is the question.
The bookdown book says that it uses Pandoc markdown with some additions, but then it says that footnotes are made inline like so:
^[This is a footnote.]
However, the Pandoc way of putting footnotes in a book allows for naming the footnote inline like so:
Here is a footnote reference,[^1]
and the footnote itself can be at the end of the document like so:
[^1]: Here is the footnote.
I would love to be able to just use the Pandoc method. Is this possible? A setting I can change somewhere?