Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/formats/pdf/pandoc/biblio-config.tex
12923 views
1
$--
2
$-- bibliography support support for natbib and biblatex
3
$--
4
5
$-- biblio-config: false will not emit the bibliography configuration.
6
$-- This is useful if the bibliography configuration is already handled by a class file, for example.
7
$if(biblio-config)$ $-- <-- QUARTO ONLY VARIABLE
8
$if(natbib)$
9
\usepackage[$natbiboptions$]{natbib}
10
\bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$}
11
$endif$
12
$if(biblatex)$
13
\usepackage[$if(biblio-style)$style=$biblio-style$,$endif$$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$]{biblatex}
14
$for(bibliography)$
15
\addbibresource{$bibliography$}
16
$endfor$
17
$endif$
18
$endif$
19