zl程序教程

您现在的位置是:首页 >  其他

当前栏目

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

转换PDFHTML 格式 md
2023-09-27 14:23:05 时间

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