创建包含 eps 图像的 pdf 文件并使用 texmaker 时,该图像中的某些字符无法正确显示。
以下是 MWE:
创建一个名为的文件mwe.eps
:
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 0 0 828 552
%%EndComments
/Symbol findfont
106 scalefont
setfont
0 100 moveto
(\155) show
showpage
%%EOF
现在创建一个名为的文件mwe.tex
:
\documentclass[5pt]{article}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\includegraphics[keepaspectratio,width=165.6pt]{mwe.eps}%
\end{document}
编译它并使用 texmaker 查看它,图像会显示某种 alpha,其中应该显示 µ。现在,如果您使用外部程序(如 Adobe Reader)查看它,则可以正常读取 µ 字符。
为什么会这样?我做错什么了吗?
答案1
您可能没有symbol
安装软件包。因此,符号字体不会嵌入到 PDF 文件中,从而导致不同查看器中的行为不同。
如何解决问题:安装symbol
包并重试。
类似问题:epstopdf 转换过程中希腊符号丢失
检查一下:https://github.com/MiKTeX/miktex-packaging/issues/112
谨致问候,伊万