diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/default.latex | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/data/templates/default.latex b/data/templates/default.latex index 0701054c0..1691f3a21 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -350,7 +350,15 @@ $if(title)$ \title{$title$$if(thanks)$\thanks{$thanks$}$endif$} $endif$ $if(subtitle)$ -\providecommand{\subtitle}[1]{} +$if(beamer)$ +$else$ +\usepackage{etoolbox} +\makeatletter +\providecommand{\subtitle}[1]{% add subtitle to \maketitle + \apptocmd{\@title}{\par {\large #1}}{}{} +} +\makeatother +$endif$ \subtitle{$subtitle$} $endif$ $if(author)$ |