I have read through the answers on this post, but I can't get either of them to work (not overly surprising given that the article is over 6 years old now): How to move the bibliography in markdown/pandoc
They suggest:
::: {refs}
:::
and
<div id="refs"></div>
This is my yaml:
output:
bookdown::pdf_document2:
keep_tex: true
toc: true
fig_caption: true
number_sections: true
citation_package: biblatex
fontsize: 12pt
geometry: margin=2.54cm
header-includes:
- \usepackage{leading}
- \leading{18pt}
bibliography: "../references/growthPotential.bib"
csl: "../references/trends-in-ecology-and-evolution.csl"
link-citations: yes
I have numbered sections throughout my document
1 - Abstract
2 - Introduction
...
7 - References
[this is where I want my references]
8 - Tables & Figures
But by default the list is added, un-numbered and unlinked at the very bottom of the document. Any suggestions?