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:
parent
f86ac89383
commit
3560b02f8b
1 changed files with 1 additions and 1 deletions
|
@ -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$
|
||||||
|
|
Loading…
Reference in a new issue