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
Sie können Folien erstellen, indem Sie "FORMAT" in "Folien" in "ipython nbconvert --to FORMAT notebook.ipynb" ändern.
Er stellt vor, wie man es mit der tatsächlich erstellten Folie macht.
http://www.slideviper.oquanta.info/tutorial/slideshow_tutorial_slides.html#/
Die Informationen sind jedoch alt, also nur die Atmosphäre.
Der schnellste Weg, um zur Hand zu überprüfen
python
ipython nbconvert --to slides notebook.ipynb --post serve
Wenn Sie die konvertierte HTML-Datei jedoch nicht ändern, reicht dies aus.
Eingabe [] Ich glaube, ich möchte es nicht auf die Folie legen.
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
Wenn ja, macht es möglich.
In meiner Umgebung, in der "print" von "ipy_hide_input" verwendet wird, ändern Sie es jedoch in "print ()"
python
ipython nbconvert --to slids notebook.ipynb --stdout | python ipy_hide_input > notebook.slides.html
Legen Sie den Ordner "disclose.js" (der mit enthüllen.js 3.1.0 nicht funktioniert hat) in denselben Ordner wie "notebook.ipynb"
(Im Inneren <script src =" enthüllen.js / js / enthüllen.js "> </ script>
)
python -m http.server
Wenn Sie mit auf "http: // localhost: 8000 / notebook.slides.html" zugreifen
Eingabe [] ist weg.
GADFLY?
Konvertiert svg
anstelle von matplotlib
alles, was interaktives Zeichnen von Grafiken im Browser ermöglicht, damit es ordnungsgemäß in eine Folie umgewandelt werden kann?
Natürlich möchte ich, dass Sie dazu in der Lage sind.
Recommended Posts