UC Love Data Week 2025
format: revealjs
in the YAML##
## My first slide title
Here's some slide content
## My second slide title {#updated-slug data-menu-title="Updated nav menu title"}
Slide two content here!
Slide titles become your URL slug (unique portion of URL) and navigation menu title (see hamburger, bottom left!) – but you can modify these!
:::
content:::
).incremental
classBy placing . . .
between any content
This content appears after a click!
library(tidyverse)
freckles <- tribble(
~id, ~num_freckles,
"Cat 1", 9,
"Cat 2", 4
)
ggplot(data = freckles, aes(x = num_freckles, y = fct_rev(id))) +
geom_col() +
labs(title = "Number of freckles on my cats' noses", x = "# of freckles") +
scale_x_continuous(breaks = scales::breaks_width(2)) +
theme(axis.title.y = element_blank())
Update the appearance of your slides by linking a stylesheet in your YAML:
---
title: "Quarto for Data Science Slides (and beyond)"
subtitle: "UC Love Data Week 2025"
format:
revealjs:
theme: my-styles.scss
---
Import Google Fonts, define Sass variables, write CSS.
Return to the demonstration website