I love using .panel-tabset
s in my reveal.js
slides, but one thing I haven't found a solution for is printing all tabs to PDF. Consider this .qmd
:
---
title: "MWE"
format:
revealjs:
embed-resources: true
---
## Slide
::: {.panel-tabset}
### Tab A
a
### Tab B
b
:::
After rendering this, press "e" to go to print mode, and then ctrl
/cmd
+ p
, you see something like this:
From what I can tell, there's no way to print, e.g., Tab B (or any other successive tab). This can be an issue for students trying to take notes on the slides (or anyone that wants to read the remaining tabs in static form).
I've also taken a look at the official reveal.js
page on printing. They list some printing options, although it feels like it doesn't show all possible printing options (I'm not sure how to find the full list of possible options).
TL;DR: I'm looking for a way, within the RStudio -> Quarto -> reveal.js framework, to print reveal.js slides to PDF where every slide with a tab appears as a different slide.