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 peut être fait en changeant la partie de
FORMATen
slides`.
Il explique comment le faire avec la diapositive réellement réalisée.
http://www.slideviper.oquanta.info/tutorial/slideshow_tutorial_slides.html#/
Cependant, les informations sont anciennes, donc seulement l'atmosphère.
Le moyen le plus rapide de vérifier à portée de main
python
ipython nbconvert --to slides notebook.ipynb --post serve
Ensuite, il s'ouvrira au navigateur.
Cependant, si vous ne modifiez pas le fichier html
converti, cela suffit,
Entrée [] Je pense que je ne veux pas le mettre sur la diapositive.
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
Si c'est le cas, cela le rend possible.
Cependant, dans mon environnement, où print
de ʻipy_hide_input est utilisé, changez-le en
print ()`.
python
ipython nbconvert --to slids notebook.ipynb --stdout | python ipy_hide_input > notebook.slides.html
Placez le dossier révèlent.js
(qui ne fonctionnait pas avec révéler.js 3.1.0) dans le même dossier que notebook.ipynb
(À l'intérieur, <script src =" révèlent.js / js / révèlent.js "> </ script>
)
python -m http.server
Si vous accédez à http: // localhost: 8000 / notebook.slides.html
avec
L'entrée [] a disparu.
GADFLY?
Est-ce que svg
au lieu de matplotlib
convertira tout ce qui permet le dessin de graphique interactif sur le navigateur afin qu'il puisse être transformé correctement en diapositive?
Bien sûr, je veux que vous puissiez le faire.
Recommended Posts