From 6836e16da2448885c80008b03fdeb646c6ea3035 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 25 Apr 2013 21:05:31 -0700 Subject: LaTeX template: Changes to make mathfont work with xelatex. We need the mathspec library, not just fontspec, for this. We also need to set options for setmathfont. --- default.latex | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'default.latex') diff --git a/default.latex b/default.latex index f385329e0..1f5181323 100644 --- a/default.latex +++ b/default.latex @@ -12,9 +12,11 @@ $if(euro)$ \usepackage{eurosym} $endif$ \else % if luatex or xelatex - \usepackage{fontspec} \ifxetex + \usepackage{mathspec} \usepackage{xltxtra,xunicode} + \else + \usepackage{fontspec} \fi \defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase} \newcommand{\euro}{€} @@ -28,7 +30,7 @@ $if(monofont)$ \setmonofont{$monofont$} $endif$ $if(mathfont)$ - \setmathfont{$mathfont$} + \setmathfont(Digits,Latin,Greek){$mathfont$} $endif$ \fi % use microtype if available -- cgit v1.2.3