python - Jupyter reveal based slideshow -


i want create presentation such this starting simple jupyter notebook. have looks like:

enter image description here

given that, i'd expect slideshow 2 slides corresponding 2 cells. command line execute:

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

what static html page seems group both of cells together.

enter image description here

how type of 1 slide per cell effect of linked presentation?

you may need include reference reveal.js package in nbconvert command:

jupyter nbconvert --to slides --reveal-prefix="http://cdn.jsdelivr.net/reveal.js/2.5.0 mynotebook.ipynb --post serve 

or, instructions on using local version of reveal.js, see this blog post damian avila


Comments