ACM 模板中使用的字体

ACM 模板中使用的字体

有人知道新 ACM 论文模板/类别使用的是什么字体吗?我想为我的论文创建一个类别,我非常喜欢这个字体。

在此先感谢您的帮助。

乔治

答案1

acmart使用 Libertine 处理文本,使用 Inconsolata 处理等宽字体,使用 newtxmath 处理数学运算。您需要的代码是

  1. 对于 pdftex

    \RequirePackage[T1]{fontenc} \RequirePackage[tt=false, type1=true]{libertine} \RequirePackage[varqu]{zi4} \RequirePackage[libertine]{newtxmath}

  2. 对于 xetex,将其更改为

    \RequirePackage[T1]{fontenc} \RequirePackage[tt=false]{libertine} \setmonofont{inconsolata} \RequirePackage[varqu]{zi4} \RequirePackage[libertine]{newtxmath}

相关内容