将Jupyter Notebook中的python脚本转化为PDF文件

将python脚本转换PDF文件

  1. 安装nbconvert(pip install nbconvert or conda install nbconvert)
    (https://nbconvert.readthedocs.io/en/latest/install.html#installing-tex.)

  2. 继续安装pandoc,下载速度极慢,尝试手机QQ浏览器下载后传百度网盘。
    (https://pandoc.org/)

  3. 继续安装Tex的环境。windows下可用安装MikTex(需要64位系统)(https://miktex.org/howto/install-miktex)

  4. 修改article.aplx文件
    (https://blog.csdn.net/wxw_csdn/article/details/88836942)

解决转PDF文件时日文显示的问题

  1. 在C:\Users\1410131\AppData\Local\Continuum\anaconda3\Lib\site-packages\nbconvert\templates\latex\aricle文件的
    \documentclass下添加:\usepackage{luatexja}

  2. 导出Notebook页面时选择Download as LaTex。

  3. 用miktex打开导出的Tex文件,并使用LuaLaTex排版。

你可能感兴趣的:(将Jupyter Notebook中的python脚本转化为PDF文件)