LaTeX template: Fix subtitle spacing (#5244)

The `\large` command does not reset the spacing without adding `\par` to the end, which caused `\subtitle` to use the same line spacing as `\title`.
This commit is contained in:
Andrew Dunning 2019-01-22 18:00:27 -05:00 committed by John MacFarlane
parent f86ac89383
commit 3560b02f8b

View file

@ -354,7 +354,7 @@ $else$
\usepackage{etoolbox} \usepackage{etoolbox}
\makeatletter \makeatletter
\providecommand{\subtitle}[1]{% add subtitle to \maketitle \providecommand{\subtitle}[1]{% add subtitle to \maketitle
\apptocmd{\@title}{\par {\large #1}}{}{} \apptocmd{\@title}{\par {\large #1 \par}}{}{}
} }
\makeatother \makeatother
$endif$ $endif$