http://ipython.org/
IPython 3.x will be the last monolithic release of IPython, containing the notebook server, qtconsole, etc. The language-agnostic parts of the project: the notebook format, message protocol, qtconsole, notebook web application, etc. will move to new projects under the name Jupyter.
https://jupyter.org/
http://lab.hakim.se/reveal-js/#/
ipython nbconvert
https://ipython.org/ipython-doc/3/notebook/nbconvert.html
ʻIpython nbconvert --to FORMAT notebook.ipynb and
FORMATis
slides` to create slides.
He introduces how to make it with the actually made slides.
http://www.slideviper.oquanta.info/tutorial/slideshow_tutorial_slides.html#/
However, the information is old, so only the atmosphere.
The quickest way to check at hand
python
ipython nbconvert --to slides notebook.ipynb --post serve
Then it will open up to your browser.
However, if you don't modify the converted html
file, this is enough,
Input [] I think I don't want to put it on the slide.
hide input cell
IPython Slideshows Will Change the Way You Work https://gist.github.com/hannes-brt/6207507
ipython nbconvert --to slids input.ipynb --stdout | ipy_hide_input > input.slides.html
If so, it makes it possible.
However, in my environment, where print
of ʻipy_hide_input is used, change it to
print () `.
python
ipython nbconvert --to slids notebook.ipynb --stdout | python ipy_hide_input > notebook.slides.html
Put the reveal.js
(which didn't work with reveal.js 3.1.0) folder in the same folder as notebook.ipynb
(Inside, <script src =" reveal.js / js / reveal.js "> </ script>
)
python -m http.server
If you access http: // localhost: 8000 / notebook.slides.html
with
Input [] is gone.
GADFLY?
Will it convert things that can be interactively drawn on the browser with svg
instead of matplotlib
so that they can be made into slides properly?
Of course I want you to do it.
Recommended Posts