diff options
author | Karl Berry <karl@freefriends.org> | 2020-10-26 20:58:03 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-10-26 20:58:03 +0000 |
commit | 0906ec1f3e3fc5013d72175734aa92b8c0909eb0 (patch) | |
tree | c8786c11392527ea440378d461970530db63e1a5 /Master/texmf-dist/tex | |
parent | 8b0af75265c1b15ebc7d478c80eec46dd0e699be (diff) |
acmart (26oct20)
git-svn-id: svn://tug.org/texlive/trunk@56769 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex')
-rw-r--r-- | Master/texmf-dist/tex/latex/acmart/acmart.cls | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/latex/acmart/acmart.cls b/Master/texmf-dist/tex/latex/acmart/acmart.cls index 00330f8cf2f..88ec017e85f 100644 --- a/Master/texmf-dist/tex/latex/acmart/acmart.cls +++ b/Master/texmf-dist/tex/latex/acmart/acmart.cls @@ -37,7 +37,7 @@ %% Right brace \} Tilde \~} \NeedsTeXFormat{LaTeX2e} \ProvidesClass{acmart} -[2020/09/13 v1.73 Typesetting articles for the Association for Computing Machinery] +[2020/10/25 v1.74 Typesetting articles for the Association for Computing Machinery] \def\@classname{acmart} \InputIfFileExists{acmart-preload-hook.tex}{% \ClassWarning{\@classname}{% @@ -724,17 +724,23 @@ TeX}\@ACM@newfontsfalse} \if@ACM@newfonts \RequirePackage[T1]{fontenc} - \RequirePackage[libertine]{newtxmath} + % Note that the order in which packages are loaded matters, + % and the correct order depends on the LaTeX engine used. + % See https://github.com/borisveytsman/acmart/issues/402 + % and https://github.com/borisveytsman/acmart/issues/410 \ifxetex + \RequirePackage[libertine]{newtxmath} \RequirePackage[tt=false]{libertine} \setmonofont[StylisticSet=3]{inconsolata} \else \ifluatex + \RequirePackage[libertine]{newtxmath} \RequirePackage[tt=false]{libertine} \setmonofont[StylisticSet=3]{inconsolata} \else \RequirePackage[tt=false, type1=true]{libertine} \RequirePackage[varqu]{zi4} + \RequirePackage[libertine]{newtxmath} \fi \fi \fi |