我想使用帕拉蒂诺XeLaTeX 中的包,但我经常使用重音字母,所以我还加载了包字体规格。但是,加载 fontspec 包后出现错误:
LaTeX 字体警告:字体形状“EU1/ppl/m/n”未定义,在输入行 10 中改用“EU1/lmr/m/n”。
即使没有字体规格包中的数学符号不是所需的 palatino 字体。
谢谢您的任何建议。
答案1
如果你还没有,请安装Tex Gyre Pagella
并TeX Gyre Pagella Math
从TeX 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
自动加载。