nbconvert 在哪里存储中间 .tex 文件?

Where does nbconvert store the intermediate .tex file?

我正在使用 Anaconda 提示将 jupyter notebook 转换为 pdf

jupyter nbconvert my-jupyter-nb.ipynb --to pdf

提示说创建了一个notebook.tex文件。我如何访问它?

谢谢!

notebook.tex 被创建为 intermediate/temp 文件。如果您还想要 LaTeX 输出,请在单独的命令中使用 --to latex

jupyter nbconvert my-jupyter-nb.ipynb --to latex