diff options
author | Josef Svenningsson <josef.svenningsson@gmail.com> | 2015-01-25 14:56:34 +0100 |
---|---|---|
committer | Josef Svenningsson <josef.svenningsson@gmail.com> | 2015-01-25 14:56:34 +0100 |
commit | 7688f0f78b7eb2dd2d2d9f430cf20a7fe7e00683 (patch) | |
tree | e6edd248d52e7a9f7c1bb689fe6caddb3b6ea8de | |
parent | cc302d99be66e4986807d5ec5f82ebf2ac38d643 (diff) | |
download | pandoc-7688f0f78b7eb2dd2d2d9f430cf20a7fe7e00683.tar.gz |
Add $institute to the latex template
Adding the $institute variable allows me to use pandoc for writing
papers using the llncs document class.
http://www.springer.com/computer/lncs/lncs+authors?SGWID=0-40209-0-0-0
-rw-r--r-- | default.latex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/default.latex b/default.latex index a3f895000..e7617773d 100644 --- a/default.latex +++ b/default.latex @@ -138,6 +138,9 @@ $endif$ $if(author)$ \author{$for(author)$$author$$sep$ \and $endfor$} $endif$ +$if(institute)$ +\institute{$for(institute)$$institute$$sep$ \and $endfor$} +$endif$ \date{$date$} $for(header-includes)$ $header-includes$ |