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