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/title.tex
12923 views
1
$-- Specific title partial for Beamer presentations
2
$if(title)$
3
\title$if(shorttitle)$[$shorttitle$]$endif${\texorpdfstring{$title$}{$title-meta$}$if(thanks)$\thanks{$thanks$}$endif$}
4
$endif$
5
$if(subtitle)$
6
\subtitle$if(shortsubtitle)$[$shortsubtitle$]$endif${\texorpdfstring{$subtitle$}{$subtitle-meta$}}
7
$endif$
8
$-- This supports QUarto's authors normalization (no support for author-meta yet)
9
\author$if(shortauthor)$[$shortauthor$]$endif${$for(authors)$$it.name.literal$$sep$ \and $endfor$}
10
\date$if(shortdate)$[$shortdate$]$endif${$date$}
11
$if(institute)$
12
\institute$if(shortinstitute)$[$shortinstitute$]$endif${$for(institute)$$institute$$sep$ \and $endfor$}
13
$endif$
14
$if(titlegraphic)$
15
\titlegraphic{
16
$for(titlegraphic)$
17
\includegraphics$if(titlegraphicoptions)$[$for(titlegraphicoptions)$$titlegraphicoptions$$sep$, $endfor$]$endif${$titlegraphic$}$sep$\enspace
18
$endfor$}
19
$endif$
20
$if(logo)$
21
\logo{\includegraphics{$logo$}}
22
$endif$
23