如何在 LaTex 中使用 subfig、psfrag 和 contour 包

如何在 LaTex 中使用 subfig、psfrag 和 contour 包

我正在尝试结合上述软件包在 LaTex 中生成图形,但无法正常工作。subfig 和 psfrag 软件包可以正常工作,标签也可以正确替换。但是,当我包含轮廓命令时,只有第一幅图像中的标签可以正确替换,而第二幅图像中的标签根本没有被替换。请查看下面的示例。我还提供了一张图片来说明我所指的内容。

\documentclass{article}

\usepackage[dvips]{graphicx}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage[dvipsnames]{xcolor}
\usepackage{psfrag}
\usepackage[outline]{contour}

\contourlength{.06em}

\begin{document}
\begin{figure}
    \centering
    
    \psfrag{000}[c][c][10][00]{\color{red}\contour{black}{TEST}\color{black}}
    % \psfrag{000}[c][c][10][00]{\color{red}TEST\color{black}}
    \subfloat[]{\includegraphics[width=\columnwidth]{drawing.eps}}\\
    \psfrag{000}[c][c][10][00]{\color{red}\contour{black}{TEST}\color{black}}
    % \psfrag{000}[c][c][10][00]{\color{red}TEST\color{black}}
    \subfloat[]{\includegraphics[width=\columnwidth]{drawing.eps}}
\end{figure}
\end{document}

在此处输入图片描述

有人能帮我解决这个问题吗?

相关内容