Whenever I take an .Rpres
file full screen under the latest RStudio (v0.99.902) on macOS every slide after the intro has a black overlay that does not disappear.
While the window is minimized we have:
[
Under full screen mode (press f
), switching from the title slide to the subsequent slides yields:
This made my slides full-screen (with the nice white background), then I could use F11 to toggle off the full-screen option. Does this work for other folks?
CodePudding user response:
Explicitly adding font and background colors in custom.css
worked for me.
.reveal .state-background {
background: white;
}
.reveal {
color: black;
}
(You also obviously have to add css: custom.css
under the title slide's title.)