aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-12-11 22:05:20 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-12-11 22:05:20 -0800
commitdd178889f642f47fc74aaeeb1d8368f32a7cc258 (patch)
treed605652264282a9c3a7cd13501d7a00c8020cc42
parente3c8bae0b1fb8995c784a457fde73b486f9b6fda (diff)
downloadpandoc-dd178889f642f47fc74aaeeb1d8368f32a7cc258.tar.gz
Added abstract variable in latex template.
-rw-r--r--default.latex5
1 files changed, 5 insertions, 0 deletions
diff --git a/default.latex b/default.latex
index cfa3460f7..e9be55382 100644
--- a/default.latex
+++ b/default.latex
@@ -146,6 +146,11 @@ $endif$
$if(title)$
\maketitle
$endif$
+$if(abstract)$
+\begin{abstract}
+$abstract$
+\end{abstract}
+$endif$
$for(include-before)$
$include-before$