Skip to content
Discussion options

You must be logged in to vote

Scrolling is not applied automatically on slide content that does not fit the size. You can add it though, but the option is scrollable
See https://quarto.org/docs/presentations/revealjs/index.html#content-overflow

Either for all slides

---
title: "Test"
format: 
  revealjs:
    scrollable: true
---

## 1

```{r}
library(modelsummary)
library(dplyr)
datasummary_skim(select(mtcars, 1:5))
```

## 2

```{r}
datasummary_skim(mtcars)
```

or for a specific slide

---
title: "Test"
format: revealjs
---

## 1

```{r}
library(modelsummary)
library(dplyr)
datasummary_skim(select(mtcars, 1:5))
```

## 2 {.scrollable}

```{r}
datasummary_skim(mtcars)
```

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by snhansen
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
revealjs Issues with the revealjs format
2 participants