當運行將文件dvisvgm
轉換為時,我丟失了文件中的文字資訊。dvi
svg
eps
運行時pdflatex
輸出正確。
\documentclass{standalone}
\usepackage{graphicx}
\begin{document}
\includegraphics{figureA}
\end{document}
輸出如下:
附上eps
包含的文件:
https://app-factory.ethz.ch/images/figureA.eps
編輯:我最終得到了以下解決方法:
ps2pdf -dEPSCrop figureA.eps figureA.pdf
gs -dNoOutputFonts -sDEVICE=pdfwrite -o v_figureA.pdf figureA.pdf
pdf2ps v_figureA.pdf figureA2.eps
這會將字體轉換為輪廓,我將使用向量化 eps 檔案。