Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/formats/beamer/pandoc/biblio.tex
12923 views
1
$if(natbib)$
2
$if(bibliography)$
3
$if(biblio-title)$
4
$if(has-chapters)$
5
\renewcommand\bibname{$biblio-title$}
6
$else$
7
\renewcommand\refname{$biblio-title$}
8
$endif$
9
$endif$
10
\begin{frame}[allowframebreaks]{$biblio-title$}
11
$if(nocite-ids)$
12
\nocite{$for(nocite-ids)$$it$$sep$, $endfor$}
13
$endif$
14
\bibliographytrue
15
\bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$}
16
\end{frame}
17
18
$endif$
19
$endif$
20
$if(biblatex)$
21
\begin{frame}[allowframebreaks]{$biblio-title$}
22
$if(nocite-ids)$
23
\nocite{$for(nocite-ids)$$it$$sep$, $endfor$}
24
$endif$
25
\bibliographytrue
26
\printbibliography[heading=none]
27
\end{frame}
28
29
$endif$
30