diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-12-19 18:22:20 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-12-19 18:22:20 -0800 |
commit | ce7287cfd92d374f714da57e24bd42d73891d5b6 (patch) | |
tree | 9c74635a63884d7f3b915ef407bdda5960973dcc | |
parent | b303fdbc7a9640aec8789fbc02ddc14440d0cd39 (diff) | |
parent | f4742780dc91919d04f6f6a99bad9d3cc4a6346e (diff) | |
download | pandoc-ce7287cfd92d374f714da57e24bd42d73891d5b6.tar.gz |
Merge pull request #152 from twsh/biblatex-options
Biblatex options
-rw-r--r-- | default.beamer | 3 | ||||
-rw-r--r-- | default.latex | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/default.beamer b/default.beamer index aaa621658..e7e1ae9a5 100644 --- a/default.beamer +++ b/default.beamer @@ -89,7 +89,8 @@ $if(natbib)$ \bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$} $endif$ $if(biblatex)$ -\usepackage{biblatex} +\usepackage$if(biblio-style)$[style=$biblio-style$]$endif${biblatex} +$if(biblatexoptions)$\ExecuteBibliographyOptions{$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$}$endif$ $for(bibliography)$ \addbibresource{$bibliography$} $endfor$ diff --git a/default.latex b/default.latex index 51e8fde7b..331ae70e2 100644 --- a/default.latex +++ b/default.latex @@ -97,7 +97,8 @@ $if(natbib)$ \bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$} $endif$ $if(biblatex)$ -\usepackage{biblatex} +\usepackage$if(biblio-style)$[style=$biblio-style$]$endif${biblatex} +$if(biblatexoptions)$\ExecuteBibliographyOptions{$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$}$endif$ $for(bibliography)$ \addbibresource{$bibliography$} $endfor$ |