You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to include citations to a references in a bibliography using quarto. For example, I have a study column called "study" that has "Author Year" and want to have "Author Year^1" in the table where 1 is the reference number in the bibliography. I tried using "Author Year @reference" (where "reference" is the cite key) and then fmt_markdown(columns = c(study) but that does not work. In the plain markdown part of the file its fine.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I would like to include citations to a references in a bibliography using quarto. For example, I have a study column called "study" that has "Author Year" and want to have "Author Year^1" in the table where 1 is the reference number in the bibliography. I tried using "Author Year @reference" (where "reference" is the cite key) and then fmt_markdown(columns = c(study) but that does not work. In the plain markdown part of the file its fine.
In the yaml I have the bib file as
bibliography: "bib/kq5.bib"
csl: jama.csl
link-citations: yes
nocite: '@*'
Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions