auto-pst-pdf 无法正常工作

auto-pst-pdf 无法正常工作

我已经使用 matlab 中的 laprint 生成了一个简单的图形:

set(0, 'defaulttextinterpreter','none')
figure(1), clf
plot([1 2])
ylabel('A straight line')
laprint

这给了我 line.eps 和 line .tex。然后我尝试将其包含在 latex 中:

\documentclass{article}
\usepackage[on]{auto-pst-pdf}
\begin{document}
\begin{figure}
    \matlabfig{line}
\end{figure}
\end{document}

我跑:

pdflatex -shell-escape foo.tex

但结果(foo-pics.pdf)是这样的:

在此处输入图片描述

看来符号替换没有起作用。出了什么问题?

我运行的是 CentOs 6.5 和 pdfTeX 3.1415926-2.4-1.40.13

相关内容