diff options
-rw-r--r-- | default.latex | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/default.latex b/default.latex index cfa3460f7..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,11 +138,19 @@ $if(subtitle)$ $endif$ \author{$for(author)$$author$$sep$ \and $endfor$} \date{$date$} +$for(header-includes)$ +$header-includes$ +$endfor$ \begin{document} $if(title)$ \maketitle $endif$ +$if(abstract)$ +\begin{abstract} +$abstract$ +\end{abstract} +$endif$ $for(include-before)$ $include-before$ |