启用 `--shell-escape` 时如何使 LuaLaTeX 实现多线程?

启用 `--shell-escape` 时如何使 LuaLaTeX 实现多线程?

我找到了这个帖子:

当启用“--shell-escape”时,如何使 pdfLaTeX 实现多线程?

效果很好。但是当我换成 LuaLaTeX 时,仍然只有 1 个 CPU 处于活动状态。

那么有没有办法用 LuaLaTeX 来实现这一点?

答案1

哦,抱歉,伙计们,我发现我看错了,一切都正常。

我在制作时寻找多线程。

这对我有用

make -j 4 -f mwe.makefile

文件如下:

\listfiles
\documentclass{scrbook}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usetikzlibrary{external} 
\tikzexternalize[mode=list and make]
\begin{document}
  \input{plot.tex}
  \input{plot.tex}
  \input{plot.tex}
   \input{plot.tex}
  \input{plot.tex}
  \input{plot.tex}
  \input{plot.tex}
  \input{plot.tex}
   \input{plot.tex}
  \input{plot.tex}
  \input{plot.tex}  
\end{document}

plot.tex 只是一个具有很多点的 pgfplots 图。

\begin{tikzpicture}
\begin{axis}
\addplot
  table[row sep=crcr]{%
0.00158079699940572 0\\
142.183864004999    0\\

...

160.419964085   2523.5\\
160.420948376999    2526.5\\
};
\end{axis}
\end{tikzpicture}%

相关内容