diff options
author | Thomas Hodgson <twsh@users.noreply.github.com> | 2016-07-01 23:01:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-01 23:01:09 +0100 |
commit | 9ce3d114126006b94583973f1cf00110e9d2e95b (patch) | |
tree | eb958bbf3331b9b5fb26dad8f4c22f9c09c47b23 | |
parent | ba3a8f742371f9e9f04100d0e61638cf65fd6ceb (diff) | |
download | pandoc-9ce3d114126006b94583973f1cf00110e9d2e95b.tar.gz |
Pass $biblatexoptions$ directly to biblatex
Addresses https://github.com/jgm/pandoc-templates/issues/201
-rw-r--r-- | default.beamer | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/default.beamer b/default.beamer index ccd0862d1..191903c95 100644 --- a/default.beamer +++ b/default.beamer @@ -89,8 +89,7 @@ $if(natbib)$ \bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$} $endif$ $if(biblatex)$ -\usepackage$if(biblio-style)$[style=$biblio-style$]$endif${biblatex} -$if(biblatexoptions)$\ExecuteBibliographyOptions{$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$}$endif$ +\usepackage[$if(biblio-style)$style=$biblio-style$,$endif$$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$]{biblatex} $for(bibliography)$ \addbibresource{$bibliography$} $endfor$ |