Palatino 包和字体规范

Palatino 包和字体规范

我想使用帕拉蒂诺XeLaTeX 中的包,但我经常使用重音字母,所以我还加载了包字体规格。但是,加载 fontspec 包后出现错误:

LaTeX 字体警告:字体形状“EU1/ppl/m/n”未定义,在输入行 10 中改用“EU1/lmr/m/n”。

即使没有字体规格包中的数学符号不是所需的 palatino 字体。

谢谢您的任何建议。

答案1

如果你还没有,请安装Tex Gyre PagellaTeX Gyre Pagella MathTeX Gyre 项目然后你可以这样做:

\documentclass{article}
\usepackage{unicode-math}
\setmainfont{TeX Gyre Pagella}
\setmathfont{TeX Gyre Pagella Math}
\begin{document}
Some Unicode maths: $x ∈ ℕ$ in a Palatino-like font.
\end{document}

运行xelatex得到:

在此处输入图片描述

请注意,unicode-math包会fontspec自动加载。

相关内容