From 9ce3d114126006b94583973f1cf00110e9d2e95b Mon Sep 17 00:00:00 2001 From: Thomas Hodgson Date: Fri, 1 Jul 2016 23:01:09 +0100 Subject: Pass $biblatexoptions$ directly to biblatex Addresses https://github.com/jgm/pandoc-templates/issues/201 --- default.beamer | 3 +-- 1 file changed, 1 insertion(+), 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$ -- cgit v1.2.3 From 922f5c0bc6a8bc279464757c2a65898b178e976d Mon Sep 17 00:00:00 2001 From: Thomas Hodgson Date: Fri, 1 Jul 2016 23:02:46 +0100 Subject: Pass $biblatexoptions$ directly to biblatex Addresses https://github.com/jgm/pandoc-templates/issues/201 --- default.latex | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/default.latex b/default.latex index 3d31a5731..4b371e12d 100644 --- a/default.latex +++ b/default.latex @@ -100,8 +100,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$ -- cgit v1.2.3