679 questions
Score of 0
0 answers
114 views
Author not centering on title slide despite CSS rules
I'm creating a Quarto Reveal.js presentation and cannot get the author information to center on the title slide, despite having text-align: center; in my CSS. The title and subtitle center correctly, ...
Score of 0
1 answer
215 views
How to ensure speaker notes visibility in a revealjs presentation created with quarto, for a slide with multiple fragments?
I have a slide in a revealjs presentation created with quarto, with several fragments and an incremental list (example below).
Ideally, the speaker notes should be visible at specific moments, as ...
Score of 1
1 answer
76 views
How do I change the corners of the code output to match the background?
When I render the revealjs document, the code output div/ section has the corners which are not the same background color as the output (see attached image with red arrows). Can this be fixed to match ...
Score of 0
0 answers
60 views
Unfilled Space Between Columns in Quarto
I'm trying to creat this effect in Quarto Reveal.js presentations with a space between two or more columns of text, which is not filled with background color set for individual columns.
For now I'm ...
Score of 1
1 answer
313 views
How can I automatically insert the current date into the YAML footer in Quarto Reveal.js?
I am using Quarto to create a Reveal.js presentation. My YAML looks like this:
---
format:
revealjs:
footer: "Footer text"
---
I would like the footer to always show the current date (...
Score of 2
1 answer
189 views
Is it possible to make a fragment stay visible across two fragment steps, and then disappear?
With {.fragment .fade-in-then-out}, we can display some content that disappears at the next fragment. I would like something like .fade-in-then-still-in-then-out, where the content would remain ...
Score of 1
1 answer
86 views
How can I update or modify part of the text shown in a first fragment when a second fragment becomes visible?
On one slide of my presentation, I use .fragment.fade-in to make elements appear one after another.
I would like to change the style (e.g., text formatting) of a fragment’s content when a second ...
Score of 0
1 answer
124 views
Revealjs Can't Go Fullscreen
I am trying to setup reveal.js and would like to get the fullscreen functionality to work. When I press 'f' it does expand to fullscreen but then shrinks right back down to normal size. It's ...
Score of 2
0 answers
144 views
Shinylive doesn't render in Quarto revealjs presentation
I'm trying to use shinylive to show a shiny python example in a revealjs quarto presentation. Unfortunately, the shinylive output keeps rendering and doesn't show the output. Here is a reproducible ...
Score of 1
0 answers
50 views
How to preserve reveal.js computer browser behavior in mobile?
We have this site build with reveal.js:
https://jano.pt
Everything looks good (the way we want) in our computer browsers.
But in mobile the layout switches to scroll layout. And the navigation arrows ...
Score of 1
1 answer
324 views
How to add MathJax macros in a Quarto Revealjs presentation?
I am trying to define a new operator in Quarto presentation (revealjs), but I either fail or it adds a white empty slide. Here are two examples:
Fails
This code fails in the sense that \N is not ...
Score of 1
1 answer
105 views
In a Quarto Revealjs presentation, how can I exclude slides based on parameters set in YAML?
I am preparing slides for a course in Quarto using Revealjs.
How can I render two different versions of the presentation? One for the students (including tasks) and one for the presenter (including ...
Score of 0
2 answers
348 views
How to open listing items in a new tab when using reveal.js slide shows?
Update: This question was submitted as a request on the https://github.com/quarto-dev/quarto-cli/discussions/12276!
I'm working on a Quarto blog where each post consists of a reveal.js slide show. My ...
Score of 2
1 answer
227 views
How to format multiple footnotes on a single sentence in Quarto reveal.js?
This is a follow-up question.
I’m wondering how to format a series of footnotes in a reveal.js slide. For example, I would like to apply three footnotes to one sentence, like so:
test_1[1-3]
My ...
Score of 4
1 answer
346 views
How to reference the same footnote more than once on a single slide?
I’m creating a Reveal.js presentation using Quarto and I want to cite the same footnote multiple times in the same slide. Here’s a minimal example (all in one .qmd file):
---
title: "test"
...