1

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

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

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

谢谢!

4

1 回答 1

-1

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

jupyter nbconvert my-jupyter-nb.ipynb --to latex
于 2018-10-15T01:44:32.740 回答