如何让 pgfplots 外部教程在 TeXnicCenter 中发挥作用?

如何让 pgfplots 外部教程在 TeXnicCenter 中发挥作用?

在 PGFPLOTS 库的 7.1.1 中给出了以下外部化示例。无论我如何尝试,我都无法让它在运行 MiKTeX 2.8 的 TeXniccenter 中工作。

\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{external}
\tikzexternalize% activate externalization!

\begin{document}
\begin{figure}
\begin{tikzpicture}
\begin{axis}
\addplot {x^2};
\end{axis}
\end{tikzpicture}
\caption{Our first external graphics example}
\end{figure}
\end{document}

我尝试将以下命令行参数添加到输出配置文件

-shell-escape -synctex=-1 -interaction=nonstopmode "%bm" 

并尝试了许多其他方法,但我无法让它工作。错误:

软件包 TiKz 错误:抱歉,系统调用“pdflatex -halt-on-error -interaction=batchmode -jobname“plaatje-figure0”...没有产生可用的输出文件“plaatje-figure0”

答案1

更新 MikTeX 安装可以解决这个问题,因为我使用的是相同的配置

在此处输入图片描述 结果是

在此处输入图片描述

相关内容