Xelatex 和 mathpazo 字体

Xelatex 和 mathpazo 字体

我尝试使用 xelatex 编译此代码。

\documentclass[a4paper,12pt]{scrartcl}
\usepackage{fontspec}
\usepackage{mathpazo}
\usepackage{lipsum}

\begin{document}
\lipsum
\end{document}

看起来字体没有加载。 在此处输入图片描述

我该如何解决?

答案1

这可能不是正确的方法,但它确实有效。

\documentclass[a4paper,12pt]{scrartcl}
\usepackage{arabxetex} %thanks to this guy
\usepackage[T1]{fontenc}
\usepackage{fontspec}
\usepackage{mathpazo}
\usepackage{lipsum}

\begin{document}
\lipsum[3]
\begin{equation}
f(a) = \frac{1}{2\pi i} \oint\frac{f(z)}{z-a}dz
\end{equation}
\end{document}

答案2

mathpazo包主要为LaTeX->dvips->PS2PDF或设计PDFLaTeX,最好使用包newpxtextnewpxmath使用获取Palatino xeLaTeX,代码为:

\documentclass{book}
\usepackage{fontspec}
\usepackage{newpxtext,newpxmath}
\begin{document}

This is for test
\[
a+b=c1
\]
\end{document}

在此处输入图片描述

相关内容