diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-06-09 22:29:21 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-06-09 22:29:21 -0700 |
commit | 20fab138d3a1bf070fd6e886f6cd22f89b42fad7 (patch) | |
tree | cd63cb386f03c71c4b305b56e43776d44836fdfc | |
parent | 9f1636367e28deaa949c4377eaea2acdc13a148f (diff) | |
download | pandoc-20fab138d3a1bf070fd6e886f6cd22f89b42fad7.tar.gz |
LaTeX template: fix subtitles.
The old code really requires scrartcl from koma-script.
Closes #1327.
-rw-r--r-- | default.latex | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/default.latex b/default.latex index 6f6486a3d..02e98874d 100644 --- a/default.latex +++ b/default.latex @@ -129,10 +129,8 @@ $if(lang)$ $endif$ $if(title)$ -\title{$title$} -$endif$ -$if(subtitle)$ -\subtitle{$subtitle$} +$if(title)$ +\title{$title$$if(subtitle)$\\\vspace{1em}{\large $subtitle$}$endif$} $endif$ $if(author)$ \author{$for(author)$$author$$sep$ \and $endfor$} |