Quarto slideshow

A demonstration of Quarto’s slideshow capabilities

Tim Child

Slide 1

Here is some info for slide 1

Slide 2

Here is some info for slide 2

Slide 3

sub slide

Does this force a slide three?

Asides?

Note: Seems like asides don’t work properly when allowing vertical navication… Eveything gets squished into the same space… Works ok if put into a vertical page though…

What about a sub-heading

What about asides?1

Can I specify differently? 2

What about code blocks

def func():
    b = 1
    return "hello"
def example_code():
    print("Hello, World!")
    #  comment
    return "Hello, World!"

Mermaid graphs

flowchart LR
  A[Hard edge] --> B(Round edge)
  B --> C{Decision}
  C --> D[Result one]
  C --> E[Result two]

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

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

sequenceDiagram
    participant Alice
    participant Bob
    Alice->>Bob: Hello Bob, how are you?
    Bob-->>Alice: I am good thanks!

gantt
    title A Gantt Diagram
    dateFormat  YYYY-MM-DD
    section Section
    A task           :a1, 2025-02-01, 30d
    Another task     :after a1  , 20d

pie
    title Key Features
    "Feature A" : 40
    "Feature B" : 30
    "Feature C" : 30

classDiagram
    class Animal {
      +String name
      +int age
      +void eat()
    }
    class Dog {
      +String breed
      +void bark()
    }
    Animal <|-- Dog

Callouts

Note

This is a note callout

Warning

This is a warning callout

Important

This is a tip callout

Tip

This is an info callout

Caution

This is an info callout