My Presentation

Slide 1

  • Item 1
  • Item 2
  • Item 3

Slide 2

Example of recursion, in Python.

def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n - 1) + fibonacci(n - 2)

Slide 3

This is a quote, and a formula below.

Slide 4

Column 1 Column 2
Item 1 Item 2
Item 3 Item 4

Slide 5

Two columns:

Left

  • 1
  • 2
  • 3
  • 4

Slide 6

Socials:

Mastodon: https://fosstodon.org/@upyesp
Blog: https://www.upyesp.org
GitHub: https://github.com/upyesp

Large Text

Mermaid

graph TD; A-->B; A-->C; B-->D; C-->D;

Speaker Notes

Can have multiple on a slide

Can also do a multiline comment that will show in notes

Needed for mermaid, can be anywhere in file except frontmatter