Skip to content
Discussion options

You must be logged in to vote

This is because References and citations have a special treatment in our Default template to be included into the appendix section at the bottom. See https://quarto.org/docs/authoring/appendices.html

You could opt out this for it to behave like regular document with References place by default at the bottom of the document. You could then add a section above and it would be in the TOC

---
title: "My Document"
format: html
toc: true
appendix-style: none
bibliography: references.bib
---

# Title

```{r}
knitr::write_bib("knitr", "references.bib")
```

# References 

See @R-knitr

You can also control the placement of the bibliography. This will prevent the References part to be included in t…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by tbenthompson
Comment options

You must be logged in to vote
2 replies
@cderv
Comment options

@tbenthompson
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
citations Issues with citations html Issues with HTML and related web technology (html/css/scss/js)
2 participants