Tikz 外部化 - 模式:列出并制作 - 无法生成图形

Tikz 外部化 - 模式:列出并制作 - 无法生成图形

我想用 .png 版本替换我的一些 .pdf 图形,但我遇到了这个问题https://stackoverflow.com/questions/56708895/tikz-png-output-does-not-output-a-png我遇到了一些与外部化模式相关的问题:列出和制作。

我想使用 Makefile 并且可以生成所需的 Makefile,但是当我尝试“制作”文件时,我收到以下输出:

process_begin: CreateProcess(NULL, cat main.figlist, ...) failed.
main.makefile:4: pipe: No error
process_begin: CreateProcess(NULL, cat main.figlist, ...) failed.
main.makefile:9: pipe: No error
All images exist now. Use make -B to re-generate them.

并且没有生成数字。由于我以前从未使用过 Makefile,因此我似乎无法在这里找到我的问题。

平均能量损失

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize[mode=list and make]

\begin{document}

\begin{tikzpicture}
  \draw (0,0) -- (1,-1);
\end{tikzpicture}

\begin{tikzpicture}
  \draw (0,0) -- (1,1);
\end{tikzpicture}
\end{document}

相关内容