Title

Author Name

Sample Slides

Bullet Points can have pauses between them.

  • One
  • Two
  • Three
  • Four

We can have columns

Include images locally

Or directly from the web

Code Blocks

We can include code blocks and highlight specific rows.

library(dplyr)
library(ggplot)

data(mtcars)
head(mtcars) |> print()

Executable Code Blocks

We can also run code blocks and show the output rather than the code

#| echo: false
library(dplyr)
library(ggplot)

data(mtcars)
head(mtcars) |> print()

YAML Header

The YAML Header contains most configuration options.

---
title: Title
author: "Author Name"
email: Email
format:
  revealjs:
    theme: sky
    incremental: true
    embed-resources: true
    logo: "SheffieldR_footer.png"
    footer: "https://SheffieldR.github.io"
---