Presentation mode

Pluto.jl has a built-in presentation mode that lets you view your notebook in full-screen as a slideshow.

How to start presentation mode

Presentation mode can be started from the Pluto.jl interface.

Step 1

Open your notebook in Pluto, and wait for all cells to finish running.

Step 2

Press the Share button in the top right. Screenshot of the Share button

Step 3

Click the โ€œSlideshowโ€ button. Screenshot of the present button

Using presentation mode

In presentation mode, you can use the arrow buttons in the bottom right to move between slides. You can also use the keyboard arrow keys. Press the Escape key to exit presentation mode.

Screenshot of presentation mode with the navigation buttons highlighted

If you want to present in full screen (without the browser addres bar, etc), use your browserโ€™s full screen mode (F11).

Slide separators

Pluto uses Markdown headers as slide separators: every time you write a header in Markdown, it is treated as a new slide. There are two slide types:

  • # Header 1 creates a title slide: content will be centered vertically.
  • ## Header 2 creates a regular slide: the header appears on top of the screen, with content below.

All other headers (### etc) do not create a new slide, they will be part of the previous slide.

Example

If your notebooks contains these two cells:

md"""
# Here is a title slide!
With some extra content
"""
md"""
## This is a regular slide
Blablabla
"""

In regular Pluto, this looks like:

Screenshot of Pluto with both sections in view

Presentation mode

In presentation mode, this creates two slides:

Screenshot of the first slide with centered content

Screenshot of the second slide with top-aligned content