jupyter-notebook-tips
输出格式转换
转换为markdown格式:
jupyter nbconvert --to markdown solution.ipynb
转换为pdf格式:
jupyter nbconvert --to pdf solution.ipynb
其他支持格式列表:
['asciidoc', 'custom',
'html', 'html_ch', 'html_embed', 'html_toc', 'html_with_lenvs', 'html_with_toclenvs',
'latex', 'latex_with_lenvs',
'markdown',
'notebook',
'pdf',
'python', 'rst', 'script',
'selectLanguage',
'slides', 'slides_with_lenvs']
查看所有支持选项:
jupyter nbconvert -h
Comments powered by Disqus.