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/toc.tex
12923 views
1
$if(toc)$
2
$if(toc-title)$
3
\renewcommand*\contentsname{$toc-title$}
4
$endif$
5
\begin{frame}[allowframebreaks]
6
$if(toc-title)$
7
\frametitle{$toc-title$}
8
$endif$
9
\setcounter{tocdepth}{$toc-depth$}
10
\tableofcontents
11
\end{frame}
12
\setcounter{tocdepth}{$toc-depth$}
13
\tableofcontents
14
}
15
$endif$
16
$if(lof)$
17
\listoffigures
18
$endif$
19
$if(lot)$
20
\listoftables
21
$endif$
22