From dd1d6374208359e2e2b4e2da2aafced917a172c9 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 11 Dec 2013 22:34:57 -0800 Subject: latex template: Put header includes after title. Closes pandoc#908. --- default.latex | 6 +++--- 1 file 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)$ -- cgit v1.2.3