Bibliography is present twice in docx
#7654
-
DescriptionI am using the following options in my Quarto document:
and then I generate the bibliography with:
But in the render document the bibliography is present twice. I thought that by using I am using R version 4.3.1 (2023-06-16) and Quarto version 1.4.487. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Can you share a full reproducible example ? This works well for me ---
title: "Quarto Playground"
format:
docx:
citeproc: true
bibliography: references.bib
---
# Content
See [@xie2015]
# References {.unnumbered}
::: {#refs}
:::
References.bib being
|
Beta Was this translation helpful? Give feedback.
-
Side note: don't use |
Beta Was this translation helpful? Give feedback.
My bad. I am using the
citeproc
lua filter by Andrew Heiss and I did not see I had to actually turnciteproc
off... Sorry!