i want create presentation such this starting simple jupyter notebook. have looks like:
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.
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
Post a Comment