我最近从http://www.latextemplates.com/template/plasmati-graduate-cv。它应该使用 XeLaTeX 编译,并预先安装 Fontin 字体,可从http://www.exljbris.com/fontin.html。
在 Linux 上一切都运行良好,但在 Windows 下却很糟糕:所有字母都用小写字母书写。问题出在这行:
\setmainfont[SmallCapsFont = Fontin SmallCaps]{Fontin} % Main document font
我已经联系了模板的作者,他建议我使用 Fontin Regular 而不是 Fontin SmallCaps:
\setmainfont[SmallCapsFont = Fontin Regular]{Fontin} % Main document font
但是,如果我这样做,我根本无法使用\textsc
。有人有什么建议吗?
附录:还有一件事。我注意到在这个环境中我无法使用某些重音符号,例如等\v{c}
。\'{c}
这正常吗?
答案1
使用\setmainfont{Fontin Regular}[SmallCapsFont = Fontin SmallCaps]
(较新的语法)或
\setmainfont[SmallCapsFont = Fontin SmallCaps]{Fontin Regular}
(较旧的语法)。