pdflatex \includegraphics 更改字体

pdflatex \includegraphics 更改字体

我有一个由 Matlab 图形创建的 EPS 图形文件(与“ps2pdf -dEPSCrop”之后的 PDF 相同)。它包含一些文本注释,包括希腊 delta ($\Delta$)。在 GhostView 中,此 EPS 图形和 PDF 图形看起来与预期一致。

也就是说,图形本身看起来不错。但是,当图形 (PDF/EPS) 包含在 includegraphics 中时,图形中的希腊字母“delta”会损坏,看起来像丹麦字母“o”。有什么建议吗?

更新:下面是 MWE。PDF 图的副本(约 4 kB)位于https://user.iter.org/filesharing/?uid=f54e3cdc-a0f8-42f2-a1d6-66bbfb26d71f

\documentclass{article}
\usepackage{textgreek}
\usepackage{amsmath,amssymb}
\usepackage[pdftex]{graphicx}
\begin{document}
The figure is loaded with includegraphics of a PDF file that contains a plot and some text, including the greek $\Delta$.
\begin{figure}[t!]
\includegraphics[width=0.85\textwidth,angle=0]{pdf-mathmode-greek-Figure.pdf}
\caption{Testing \textDelta{} and math $\Delta$ in the caption.}
\label{fig:AxV}
\end{figure}
\end{document}

相关内容