Replies: 1 comment 7 replies
-
Reveal.js is HTML thus you can use (S)CSS to target the slide section and add a border rule. Not tested: .reveal .slide {
outline: thick double #B22222;
}
/* or */
.reveal .slide {
border: thick double #B22222;
} Note that since it is HTML and elements are resized, you still need to preview your slides on a sufficient screen display size to display the slides at the right size, see https://quarto.org/docs/presentations/revealjs/advanced.html#presentation-size. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
I would like see slide boundaries + margin in preview (revealjs presentation), but cannot find an option to view that.
This is useful to easily detect when there is to much stuff on a slide (or if a bullet point or new line still fits onto the existing slide).
I am looking for something similar to the LaTeX package
layout
or thegeometry
optionshowframe
.How to draw a line for slide boundaries? In addition showing the margin can be quite helpful.
Beta Was this translation helpful? Give feedback.
All reactions