-
Recently I asked a question about varying the reference allocation with Quarto in #1728. Then I find the problem that made the old rmarkdown tricks not work was because I used the A replicable example: ---
format:
pdf:
number-sections: true
aft-pdf:
keep-tex: true
aft-html: default
bibliography: bio.bib
title: A test
---
content @Hu2020
# Reference
::: {#refs}
:::
# Online Supplementary Materials
See the difference of the reference when choosing the following options respectively: How could I allow the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I used Then I moved the references section to the top.
This will require you to have some knowledge about LaTeX first, and how document classes work. For example in the template:
|
Beta Was this translation helpful? Give feedback.
I used
quarto use template quarto-journals/article-format-template
and rendered the template using the default with the references at the end which gave the proper and expected results.Then I moved the references section to the top.
It gave me the proper and expected results, which is, the references section at the top.
This will require you to have some knowledge about LaTeX first, and how docu…