Skip to content

Commit

Permalink
Merge pull request #70 from bluebirch/master
Browse files Browse the repository at this point in the history
Fix polyglossia/biblatex problem with xelatex
  • Loading branch information
jgm committed Sep 26, 2014
2 parents a63c58b + 19525bd commit 5c35a0a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions default.latex
Expand Up @@ -49,6 +49,14 @@ $endif$
$if(geometry)$
\usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
$endif$
$if(lang)$
\ifxetex
\usepackage{polyglossia}
\setmainlanguage{$mainlang$}
\else
\usepackage[$lang$]{babel}
\fi
$endif$
$if(natbib)$
\usepackage{natbib}
\bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$}
Expand Down Expand Up @@ -123,14 +131,6 @@ $endif$
$if(verbatim-in-note)$
\VerbatimFootnotes % allows verbatim text in footnotes
$endif$
$if(lang)$
\ifxetex
\usepackage{polyglossia}
\setmainlanguage{$mainlang$}
\else
\usepackage[$lang$]{babel}
\fi
$endif$

$if(title)$
\title{$title$$if(subtitle)$\\\vspace{0.5em}{\large $subtitle$}$endif$}
Expand Down

0 comments on commit 5c35a0a

Please sign in to comment.