Slides

Using RevealJS

You can add revealjs slides with the tag: <Slides>. Slides have support for code syntax highlight, Markdown, and math equations.

The Lorenz Equations

\[\begin{aligned} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{aligned} \]

    def hello_world(a, b):
        print("Hello, World!", a + b)
  

You can fine-tune the slides configurations with the following properties: hideControls, hideControlsTutorial, controlsLayout, controlsBackArrows, progress, slideNumber, and shuffle. See more at revealjs config docs.