在Ubuntu命令行输入:
jupyter nbconvert --to html notebook.ipynb
另外,jupyter提供了一些命令,可以对生成的html格式进行配置:
jupyter nbconvert --to html --template full notebook.ipynb
这是默认配置,提供完整的静态html格式,交互性更强。
jupyter nbconvert --to html --template basic notebook.ipynb
简化的html,用于嵌入网页、博客等,这不包括html标题。
在Ubuntu命令行输入:
jupyter nbconvert --to md notebook.ipynb
简单的Markdown格式输出,cell单元不受影响,代码cell缩进4个空格。
在Ubuntu命令行输入:
jupyter nbconvert --to letex notebook.ipynb
Letex导出格式,生成后缀名为NOTEBOOK_NAME.tex的文件。jupyter提供的额外模板配置为:
jupyter nbconvert --to letex -template article notebook.ipynb
这是默认配置,Latex文章。
jupyter nbconvert --to letex -template report notebook.ipynb
Latex报告,提供目录和章节。
jupyter nbconvert --to letex -template basic notebook.ipynb
最基本的Latex输出,经常用来自定义配置