使 sphinx 以 nonstopmode 构建 latex PDF

Make sphinx build latex PDF in nonstopmode

我正在使用 sphinx 构建我的 latex 文档,但每次我 运行 make latexpdf 命令时,latex 都会停止构建并要求用户输入 -- latex 不是 运行 不间断模式。过去,我能够将 nonstopmode 放入 makefile 中,并使用“-use-make”和 latexmk 来编译所有内容。在 Sphinx 上做了一些挖掘,但无法真正找到我要找的东西。

可以通过 LATEXMKOPTS Makefile 变量提供 -interaction=nonstopmode 选项:

make latexpdf LATEXMKOPTS="-interaction=nonstopmode"

参见https://www.sphinx-doc.org/en/master/usage/builders/index.html#sphinx.builders.latex.LaTeXBuilder