代码之家  ›  专栏  ›  技术社区  ›  clstaudt

使用Jupyter Lab编辑幻灯片

  •  1
  • clstaudt  · 技术社区  · 6 年前

    新的 Jupyter Lab

    enter image description here

    这个特写怎么了?有办法在Jupyter实验室编辑幻灯片吗?

    2 回复  |  直到 6 年前
        1
  •  3
  •   Caio Belfort    6 年前

    在Jupyter Lab中,您可以更改“Cell Inspector”菜单中的“幻灯片类型”。

        2
  •  7
  •   John Drinane    5 年前

    我已经在ubuntu18.04.3 LTS上安装了jupyterlab1.1.4,并且使用了python3虚拟环境内核,它运行得非常好。只需完成笔记本,然后使用最左边的“笔记本工具”选项卡配置每个单元格(如屏幕截图所示)。然后保存并关闭笔记本并运行下面的命令以输出幻灯片。

    enter image description here

    打开终端,导航到最近保存的.ipynb并运行

    jupyter nbconvert Untitled2.ipynb --to slides
    

    为幻灯片或说

    jupyter nbconvert Untitled2.ipynb --to pdf
    

    对于pdf

    enter image description here

    注意:您可能需要安装Tex包来执行pdf输出。查看文档 here

    sudo apt-get install texlive-xetex texlive-fonts-recommended texlive-generic-recommended
    

    干杯

        3
  •  1
  •   Kamil Niski    6 年前

    nbconvert

    Presenting Code Using Jupyter Notebook Slides

    需要运行的命令:

    jupyter nbconvert jupyter_notebook.ipynb --to slides --post serve