I am trying to prepare lecture slides with quarto in revealjs format (previously used xaringan with great results).
When I open the rendered html with any browser (Firebox, Chrome, Edge), I cannot scroll down to the content that is at the bottom. I have tried scrollable: true and in YAML and {.scrollable} next to slide headings; they don't work. The example below has an R code that produces a regression table but even if the slide consists only of text, it will not scroll down.
This makes quarto unusable for my lectures, but I wish to switch to quarto for everything as soon as I can, so any help is appreciate.
YAML:
title: "Regression"
author: "Me"
format:
revealjs:
theme: dark
incremental: true
scrollable: true
transition: slide
execute:
echo: true
editor: visual
Example Slide:
# Preparation
- `jtools` is just a quick way to produce regression analyses and plots
- dataset is from base R
- We have a significant interaction
. . .
```{r}
library(jtools) # for summ()
states <- as.data.frame(state.x77)
fiti <- lm(Income ~ Illiteracy * Murder + `HS Grad`, data = states)
summ(fiti)
I have the exact same issue. I tried a couple of things including installing the pre-release version of quarto, trying out extensions and adjusting different flags. What ended up restoring the scrolling was setting my
but that is not really any good as I will just have these enormously long slide. I don't think this is the intended functionality. You should probably file a bug report on (GitHub)[https://github.com/quarto-dev/quarto/issues]