Demonstrate Revealjs Quarto slides

This is an example subtitle

Erika Tyagi

What is Quarto?

  • Quarto is a tool for scientific and technical documentation.
  • Quarto works with R, Julia, Python, and JS Observable.
  • It can create a range of documents from simple .html documents and PDFs to full books and websites.

Incrementing text

It’s easy to display lists incrementally:

  • First item
  • Second item
  • Third item

You can uses pauses and fragments to make other content display incrementally.

Displaying code

library(tidyverse)  
library(urbnthemes) 

set_urbn_defaults(style = "print")

ggplot(cars, aes(x = speed)) +
  geom_histogram(bins = 15) +
  labs(title = "Histogram of speeds")

Rendering code

(a) Histogram of speeds

(b) Histogram of dists

Figure 1: Histograms of individual variables

Using tabsets

ggplot(cars, aes(x = speed)) +
  geom_histogram(bins = 15) +
  labs(title = "Histogram of speeds")

More resources

For a full description of the capabilities of Revealjs with Quarto, see the official demo and documentation.