使用jupyter完成后,需要将后缀为.ipynb文件转换成.html文件才能展示出效果
labels
菜单栏选择View—>Toggle Toolbar—>打开
菜单栏选择View—>Cell Toolbar—>Slidesshow—>选择
Slide
单个view,左右滑动切换
Sub-Slide
Cell的sub-cell,上下滑动切换
Fragment
这个是Slide或Sub-Slide的属性,可以按次序展示,单击一次出现一条
Skip
跳过,注释非演示代码用的
Notes
在页面按s就可以跳出来的注释
Reveal
themes
Sky, Beige, Serif, etc.
transitions
Cube, Zoom, None, etc.
gen
jupyter-nbconvert –to slides Python_Share.ipynb –reveal-prefix ‘//cdn.bootcss.com/reveal.js/3.2.0’ –output Python_Share
server
python -m SimpleHTTPServer 8000
注意:
由于cdn不一定可用,在github 下载 reveal.js
https://github.com/hakimel/reveal.js/releases
jupyter-nbconvert –to slides blockChain.ipynb –reveal-prefix ‘./reveal.js-3.6.0’ –output Python_Share
注意生成文件不要移动位置
安装 nodejs npm install http-server
直接 http-server 命令就行了