R presentation (rpres) goes black in full screen mode

佐手、 提交于 2019-12-05 03:06:05

I had this problem too.

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

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?

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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!