diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-12-11 22:34:57 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-12-11 22:34:57 -0800 |
commit | dd1d6374208359e2e2b4e2da2aafced917a172c9 (patch) | |
tree | 17e7ee51faffaf5851038c12f80234cc6c1c57a1 | |
parent | dd178889f642f47fc74aaeeb1d8368f32a7cc258 (diff) | |
download | pandoc-dd1d6374208359e2e2b4e2da2aafced917a172c9.tar.gz |
latex template: Put header includes after title.
Closes pandoc#908.
-rw-r--r-- | default.latex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/default.latex b/default.latex index e9be55382..6bb70bc4b 100644 --- a/default.latex +++ b/default.latex @@ -129,9 +129,6 @@ $if(lang)$ \usepackage[$lang$]{babel} \fi $endif$ -$for(header-includes)$ -$header-includes$ -$endfor$ $if(title)$ \title{$title$} @@ -141,6 +138,9 @@ $if(subtitle)$ $endif$ \author{$for(author)$$author$$sep$ \and $endfor$} \date{$date$} +$for(header-includes)$ +$header-includes$ +$endfor$ \begin{document} $if(title)$ |