Citations with quarto
I use Zotero to manage my references. I have my entire library automatically dumped into a library.bib
file on my computer. I created a symbolic link to this library in the root directory of my quarto website by calling ln -s /Users/karltayeb/Documents/biblatex/library.bib .
Then I added bibliography: library.bib
to the _quarto.yml
file which controls global options for the website. Now we can add references by there citation key using @citekey
E.g. here is a paper (1)
This works site-wide. Also note you can change citation style using csl
option. Personally I like Vancouver format since the citations just appear as numbers which is less disruptive when reading. Particularly in this setting, where we can hover over the citation to get more information I think it is a good online format.