diff options
author | Thomas Hodgson <twsh@users.noreply.github.com> | 2017-02-06 15:26:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 15:26:18 +0000 |
commit | 017c194995f0820504e09619bb3b21f5ae6005d1 (patch) | |
tree | e3eeef651e6aeb325f5faeef60d320224a5c1993 | |
parent | d4f203657a838e4aa7949e39778accb55cfea303 (diff) | |
download | pandoc-017c194995f0820504e09619bb3b21f5ae6005d1.tar.gz |
Add options for title graphic and logo
Allow specification of a title graphic and/or logo for Beamer.
-rw-r--r-- | default.beamer | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/default.beamer b/default.beamer index 1dcc77e4e..16ec6f34a 100644 --- a/default.beamer +++ b/default.beamer @@ -227,6 +227,12 @@ $if(institute)$ \institute{$for(institute)$$institute$$sep$ \and $endfor$} $endif$ \date{$date$} +$if(titlegraphic)$ +\titlegraphic{\includegraphics{$titlegraphic$}} +$endif$ +$if(logo)$ +\logo{\includegraphics{$logo$}} +$endif$ \begin{document} $if(title)$ |