Cambria 字体无法使用

Cambria 字体无法使用

我在使用 MikTeX 2.9 时遇到了与 Overleaf 相同的问题,两者都使用 XeLaTeX。我需要使用 CAMBRIA.TTC 字体。以下示例在两种设置中均不带粗体和斜体格式。

\documentclass{article}
 \usepackage{fontspec}
 \setmainfont[Ligatures=TeX]{CAMBRIA.TTC}
 \begin{document}
 \textsc{Small caps work,} but \textbf{boldface} and \textit{italics} do not work.
 \end{document}

答案1

我认为现在所有功能都\textsc可以\textbf\textitCambria 字体一起正常使用了。

在此处输入图片描述

 \documentclass{article}
 \usepackage{fontspec}
 \setmainfont[Ligatures={TeX,Common}]{Cambria}
 \begin{document}
 \textsc{Small caps work,} but \textbf{boldface} and \textit{italics} do not work.
 \end{document}

相关内容