Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 832 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 832 Bytes

Tutorial Slides

This directory contains everything to generate the slide used for the tutorial.

Assuming you have correctly installed Manim, LaTeX and Jupyter, see the main README document, you can generated the slides with:

jupyter nbconvert slides/Slides.ipynb \
  --to slides \
  --post serve \
  --no-input \
  --ExecutePreprocessor.kernel_name=python3 \
  --execute \
  --SlidesExporter.reveal_number='c' \
  --SlideExporter.reveal_controls=false

The command can take several minutes to process as it will need to render all the animations. You might also need to change python3 to your (new) kernel name.

The generated slides are also available online.

NOTE: to navigate to the next slide, use the space bar or the arrow keys.

And that's all!