diff options
author | Douglas F. Calvert <dfc@anize.org> | 2013-02-26 21:21:31 -0500 |
---|---|---|
committer | Douglas F. Calvert <dfc@anize.org> | 2013-02-26 21:21:31 -0500 |
commit | a1f7cce1f92d84ffc158c9e413bbaac0ffd2537a (patch) | |
tree | 71dcc30c4885f1ad9365c74f3a4a3240e0b41aa4 /default.latex | |
parent | fbc015a54d8b98eb904fae997ce732f0cc507472 (diff) | |
download | pandoc-a1f7cce1f92d84ffc158c9e413bbaac0ffd2537a.tar.gz |
Load microtype after fonts.
Microtype needs to know what fonts are in use and it is suggested that it is aded after loading fonts.
Diffstat (limited to 'default.latex')
-rw-r--r-- | default.latex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.latex b/default.latex index e2eb58a79..f385329e0 100644 --- a/default.latex +++ b/default.latex @@ -4,8 +4,6 @@ \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript -% use microtype if available -\IfFileExists{microtype.sty}{\usepackage{microtype}}{} % use upquote if available, for straight quotes in verbatim environments \IfFileExists{upquote.sty}{\usepackage{upquote}}{} \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex @@ -33,6 +31,8 @@ $if(mathfont)$ \setmathfont{$mathfont$} $endif$ \fi +% use microtype if available +\IfFileExists{microtype.sty}{\usepackage{microtype}}{} $if(geometry)$ \usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry} $endif$ |