欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何将ipynb转换为html,md,pdf等格式

程序员文章站 2022-05-28 15:34:17
...

1、支持文件格式

asciidoc, custom, html, latex, markdown, notebook, pdf, python, rst, script, slides

2、转换方式

jupyter nbconvert --to type filename

3、例子

(1)ipynb转为html格式

jupyter nbconvert --to html notebook.ipynb

(2)ipynb转换为markdown格式

jupyter nbconvert --to markdown notebook.ipynb

(3)ipython转换为pdf格式

jupyter nbconvert --to pdf notebook.ipynb

(4)ipynb转换为latex格式

jupyter nbconvert --to letex notebook.ipynb