Questions tagged [rpres]

The RStudio presentation authoring environment

.rpres is the file extension for RStudio presentation files, and users of that IDE have adopted it as referring to issues related to display with the available markdown capacities: R Markdown and Mathjax

41 questions
15
votes
2 answers

How to include plotly in R Studio Presentations (Rpres)

How to include a plotly plot in a Rpres file? If you do it like in a normal Rmd file Basic Plot ======================================================== ```{r, echo=FALSE} library(plotly) plot_ly(economics, x = date, y = unemploy / pop) ``` The…
jakob-r
  • 6,824
  • 3
  • 29
  • 47
10
votes
2 answers

Control size of figure in Rstudio presentation

I'm creating a presentation in RStudio (.Rpres). I have a figure that is too large and extends beyond the screen. How can I reduce it? Too big, need to reduce size Figure 1 ======================================================== ![alt…
Glen
  • 1,722
  • 3
  • 18
  • 25
9
votes
0 answers

Reconciling display differences of RPresentation

RStudio seems to handle display of output slides inconsistently/poorly. How can I control the output so that the saved version of my slides matches what I see in RStudio? This test…
MichaelChirico
  • 33,841
  • 14
  • 113
  • 198
9
votes
2 answers

Code box size and font size in RPres

I've worked in the past a good deal with knitr and beamer for slides. One thing I'm noticing now with R Presentations that dynamic sizing of both the code box and the size of the code font seems to be missing. With knitr/beamer I could easily change…
jebyrnes
  • 9,082
  • 5
  • 30
  • 33
8
votes
2 answers

R presentation (rpres) goes black in full screen mode

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…
coatless
  • 20,011
  • 13
  • 69
  • 84
6
votes
2 answers

Changing math formulas font size in RPres

How can I change the font size of the the math formulas in Rpres? [Editor's note: 'Rpres' is the file extension used by RStudio for its "Presentation" files. It's apparently been adopted by users as shorthand for that section of the IDE.] A similar…
Worice
  • 3,847
  • 3
  • 28
  • 49
6
votes
1 answer

How to Make RStudio Presentation Self-contained?

I'm writing a presentation in R using RStudio. To create new presentation, I select "R Presentation" from the File => New File menu. RStudio creates new document. Here is the template: New…
Davit Sargsyan
  • 1,264
  • 1
  • 18
  • 26
5
votes
2 answers

image and text side by side Rstudio presentation / .rpres

I'm trying to achieve the basic layout that 99% of presentations use where a slide has a title some text below that and then an image below that with text to its side. Apparently, this is a very difficult task to accomplish in rstudio presentations…
Cyrus Mohammadian
  • 4,982
  • 6
  • 33
  • 62
4
votes
0 answers

Using timevis in R presentations

I'm trying to include an HTML widget created by timevis in an R presentation (.Rpres). I'm using: library(timevis) data <- data.frame(id = 1:4, content = c("Item one", "Item two","Ranged item", "Item four"), start = c("2016-01-10",…
4
votes
0 answers

python code highlighting in R presentation

I am using RPubs to post a few multiple choice questions about Python programming. In an .Rmd file I get Python code highlighting when valid Python code is put inside three back ticks. I am trying to get the same highlighting in an .Rpres file (as…
memebrain
  • 403
  • 3
  • 9
3
votes
1 answer

How to edit title slide style in .RPres R Presentation?

I'm having troubles editing the style of the title slide in a .RPres R Presentation. I'm using a .css file to set the styles, and already tried this: .title-slide{ text-align: center; background-color: white; background-size: cover; color:…
3
votes
1 answer

How to define custom CSS within the document?

According to the RStudio documentation of RPres, there's a way to add some custom CSS styles within the .Rpres document: [I]f you prefer to include styles right within the presentation source file you can also place them at the top of the source…
MichaelChirico
  • 33,841
  • 14
  • 113
  • 198
3
votes
0 answers

column layout in R Presentation

I'd like to have two columns on a slide in R Presentation, with the column-split after a full-width paragraph, but I can only get this: I want the "Ice Cream" section to take up the full width of the slide, and the "Ben's Ice Cream Palace" and…
MissMonicaE
  • 709
  • 1
  • 8
  • 15
3
votes
1 answer

.Rpres (not rmarkdown) two-column layout not compatible in IE

Rpres (not remarkdown, e.g, ioslides_presentation) has a big advantage in two-column layout: ***. The feature works fine in Firefox and Chrome. E.g., the code below First Slide ======================================================== For more…
madlogos
  • 71
  • 5
3
votes
1 answer

how to make bullets appear incrementally r presentation

How does one make an R presentation display bullets incrementally. By "R presentation" I mean Rstudio's .rpres -I know this can be done in ioslides, beamer, slidify, etc. but I cannot find any documentation about how this is implemented in .rpres.…
Cyrus Mohammadian
  • 4,982
  • 6
  • 33
  • 62
1
2 3