8

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:

[Windowed Rpres]

Under full screen mode (press f), switching from the title slide to the subsequent slides yields:

Full Screen Bug

Code used:

Lecture 4: The Art of Life
====
author: 385
date: Today
autosize: true

On the Agenda
====

- Learn about functions
- Learn about other things..

> Only this text appears
Hack-R
  • 22,422
  • 14
  • 75
  • 131
coatless
  • 20,011
  • 13
  • 69
  • 84
  • hmm. Yes, I can replicate that problem in FF on Windows. You can probably work around it by either displaying it in the IDE or in browser but not full screen or using HTML tags. But still, it's weird. – Hack-R Jun 19 '16 at 00:18
  • 2
    this happens to me using chrome but not safari or firefox on a mac. f11 doesn't do anything as suggested below. – Cyrus Mohammadian Sep 20 '16 at 08:39

2 Answers2

1

I had this problem too.

F11 didn't help me either, until after I started viewing the slides full-screen using the menu bar: enter image description here

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?

Nova
  • 5,423
  • 2
  • 42
  • 62
0

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.)

lune
  • 48
  • 1
  • 4