diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-08-09 09:45:11 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-08-09 09:45:11 -0700 |
commit | 988a712310194d1994b71aacfc42616c6c75ac06 (patch) | |
tree | c483dd3bcd464217f0927d661043dac53f595875 /default.latex | |
parent | d171db3e6d28134e0f98ba10c60ac8c13380a480 (diff) | |
download | pandoc-988a712310194d1994b71aacfc42616c6c75ac06.tar.gz |
LaTeX template: move abstract to before `\maketitle`.
Diffstat (limited to 'default.latex')
-rw-r--r-- | default.latex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/default.latex b/default.latex index 26684135d..a57b030d0 100644 --- a/default.latex +++ b/default.latex @@ -162,14 +162,14 @@ $endfor$ \fi \begin{document} -$if(title)$ -\maketitle -$endif$ $if(abstract)$ \begin{abstract} $abstract$ \end{abstract} $endif$ +$if(title)$ +\maketitle +$endif$ $for(include-before)$ $include-before$ |