diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-03-19 13:45:46 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-03-19 13:45:46 -0700 |
commit | d39b2207f98e8a6c6f91b0498c183069a0aa7c97 (patch) | |
tree | 42d4b55a82c6e306495e6edce29534723351f0c0 | |
parent | bcd6640e32e23598628701d9bdc0e8f14135c20a (diff) | |
parent | 7688f0f78b7eb2dd2d2d9f430cf20a7fe7e00683 (diff) | |
download | pandoc-d39b2207f98e8a6c6f91b0498c183069a0aa7c97.tar.gz |
Merge pull request #79 from josefs/master
Add $institute to the latex template
-rw-r--r-- | default.latex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/default.latex b/default.latex index afa679a95..0a1c47391 100644 --- a/default.latex +++ b/default.latex @@ -199,6 +199,9 @@ $endif$ $if(author)$ \author{$for(author)$$author$$sep$ \and $endfor$} $endif$ +$if(institute)$ +\institute{$for(institute)$$institute$$sep$ \and $endfor$} +$endif$ \date{$date$} \begin{document} |