我已经将 jgraph 文件转换为 eps,并尝试用 LaTeX 符号替换 eps 图中文本。我已按照这个问题但建议的解决方案对我来说似乎不起作用。
以下是我的简短片段:
\documentclass{article}
\usepackage{graphicx}
\usepackage{psfrag}
\usepackage{auto-pst-pdf}
\begin{document}
\title{Sample PSFrag}
\maketitle
Hi there.
{
\psfrag{rmax}{$r_{max}$}
\includegraphics[width=0.5\textwidth]{lusearch9}
}
\end{document}
该字符串出现在 eps 文件中:\(rmax = 0%\))
但最终生成的 pdf 文件中仍未发生替换。我正在使用pdflatex --shell-escape sample.tex
。
任何建议,尤其是使用 pdflatex 机制的建议,都将不胜感激。