aboutsummaryrefslogtreecommitdiff
path: root/templates/latex.template
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-03-13 04:11:24 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-03-13 04:11:24 +0000
commit3b9be92492cca7573f9ce79dff099b4d2fa3c56c (patch)
treef26d5f856df472e203645f082782e158fb5d8e2e /templates/latex.template
parenta35af5db295b0e0c598b1ff68f52fc14a4d3911e (diff)
downloadpandoc-3b9be92492cca7573f9ce79dff099b4d2fa3c56c.tar.gz
Use template variables for include-before/after.
* These options now imply -s; previously they worked also in fragment mode. * Users can now adjust position of include-before and include-after text in the templates. * Default position of include-before moved back (as it originally was) before table of contents. * Resolves Issue #217. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1883 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'templates/latex.template')
-rw-r--r--templates/latex.template8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/latex.template b/templates/latex.template
index bca71f091..02e570a76 100644
--- a/templates/latex.template
+++ b/templates/latex.template
@@ -80,10 +80,18 @@ $if(title)$
\maketitle
$endif$
+$for(include-before)$
+$include-before$
+
+$endfor$
$if(toc)$
\tableofcontents
$endif$
$body$
+$for(include-after)$
+
+$include-after$
+$endfor$
\end{document}