From 3560b02f8bfde83552e721d9eaacf68d4cc6f354 Mon Sep 17 00:00:00 2001 From: Andrew Dunning Date: Tue, 22 Jan 2019 18:00:27 -0500 Subject: 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`. --- data/templates/default.latex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/templates/default.latex') diff --git a/data/templates/default.latex b/data/templates/default.latex index b9dbbb774..01e435b43 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -354,7 +354,7 @@ $else$ \usepackage{etoolbox} \makeatletter \providecommand{\subtitle}[1]{% add subtitle to \maketitle - \apptocmd{\@title}{\par {\large #1}}{}{} + \apptocmd{\@title}{\par {\large #1 \par}}{}{} } \makeatother $endif$ -- cgit v1.2.3