jupyternotebook运行没有out
时间: 2023-12-03 20:05:39 浏览: 174
jupyter notebook参数化运行python方式
5星 · 资源好评率100%
根据引用[2]中的描述,当将Jupyter notebook中的代码转换为LaTeX代码并生成pdf文件时,输出的结果不再带有In、Out标识。这是因为LaTeX代码不支持这种标识。如果您想在pdf文件中显示输出结果,可以使用nbconvert工具将Jupyter notebook转换为pdf文件,并在转换时使用--template=latex.tplx选项。这将使用LaTeX模板来生成pdf文件,并在其中包含输出结果。以下是使用nbconvert将Jupyter notebook转换为pdf文件的示例命令:
```shell
jupyter nbconvert --to pdf --template=latex.tplx notebook.ipynb
```
其中,notebook.ipynb是您要转换的Jupyter notebook文件名。请确保在执行此命令之前已安装nbconvert工具。
阅读全文