LaTeX template: Allow bibliography to be used in place of biblio-files.

Closes #43.  Thanks to nougad.
This commit is contained in:
John MacFarlane 2014-04-11 11:08:10 -07:00
parent 7c977fe097
commit 5f8d7968fe

View file

@ -47,6 +47,9 @@ $if(biblatex)$
$if(biblio-files)$
\bibliography{$biblio-files$}
$endif$
$if(bibliography)$
\bibliography{$bibliography$}
$endif$
$endif$
$if(listings)$
\usepackage{listings}
@ -166,7 +169,6 @@ $endif$
$body$
$if(natbib)$
$if(biblio-files)$
$if(biblio-title)$
$if(book-class)$
\renewcommand\bibname{$biblio-title$}
@ -174,8 +176,11 @@ $else$
\renewcommand\refname{$biblio-title$}
$endif$
$endif$
$if(biblio-files)$
\bibliography{$biblio-files$}
$endif$
$if(bibliography)$
\bibliography($bibliography$}
$endif$
$endif$
$if(biblatex)$