Slidify is an R package to create elegant, interactive html5 presentations from R Markdown.
Questions tagged [slidify]
118 questions
6
votes
1 answer
How to use slidify with impress.js
Following https://twitter.com/ramnath_vaidya/status/274636089715740672 slidify should support impress.js.
But when I use
---
title : Test
subtitle :
author :
job :
framework : impressjs # {io2012, html5slides, shower,…

JerryWho
- 3,060
- 6
- 27
- 49
6
votes
0 answers
How to use MathJax in Slidify?
It seems that all that need to do is to claim widget: mathjax in the title page. But I can't get the formulas correctly rendered. Anything missing? Thank you.
UPDATE: I checked the final index.html, and found that many "*"'s have become or…

Ziyuan
- 4,215
- 6
- 48
- 77
5
votes
4 answers
Error: ScalesList was built with an incompatible version of ggproto
I'm doing a presentation in slidfy, using the deckjs framework.
Everything was ok, but suddenly this chunk of code:
ggplot(cars, aes(x = speed, y = dist)) + geom_point(color = 'red') + stat_smooth(method = "lm", formula = y ~ x, size = 0.5, se =…

Pablo
- 613
- 7
- 11
5
votes
2 answers
Warning message at R startup (slidify, rmarkdown)
When I startup my R (in RStudio IDE), I receive the warning:
Warning: namespace ‘slidify’ is not available and has been replaced by
.GlobalEnv when processing object ‘.SLIDIFY_ENV’
Yesterday I uninstalled slidify (and slidifyLibraries) as this…

GegznaV
- 4,938
- 4
- 23
- 43
5
votes
2 answers
Slidify - how to customize a slide background?
I have been struggling to customize the background of my slide deck using the 'slidify' package.
Actually, I could do it for the title slide by modifying the file 'slidify.css' though:
.title-slide {
/*background-color: #CBE7A5 */; /* #EDE0CF; ;…

user3193920
- 235
- 2
- 10
5
votes
1 answer
Slidify - diacritic marks issue: different title slide font in RStudio Knit HTML view and slidify html output
I am developing a presentation with the use of R slidify function. In my presentation I use diacritic marks from Polish language (Ą,Ć,Ę,Ł,Ń,Ó,Ś,Ź,Ż). I have noticed that their display (only in case of the presentation title slide) does differ…

Marta Karas
- 4,967
- 10
- 47
- 77
5
votes
3 answers
Send/share sensitive R slidify presentation via email or other secure methods
I would like to send to someone else a presentation that I have created using R and slidfy, but it contains sensitive information, so putting it up onto github pages using the gh-pages branch and then sending the URL isn't really an option, since…

h.l.m
- 13,015
- 22
- 82
- 169
4
votes
2 answers
Trying to insert R Shiny Apps in Slidify
I am having difficulty finding good examples of how to embed R Shiny Apps in a Slidify presentation. Ideally I would like to reference the external app.R file instead of recreating my existing code in the index.Rmd.
Can anyone provide examples,…

Tim
- 929
- 12
- 30
4
votes
1 answer
Adjust the size of plotly charts in slidify
I've created a plotly chart in R and then save the plot via htmlwidget so the plot can called in slidify. I played with width and height, in both layout argument and index.Rmd to fit the plot on a slidify slide but the final result always cut the…

Ken
- 863
- 3
- 13
- 24
4
votes
1 answer
Slidify fails to build example markdown
I'm on OSX 10.10.3 (Yosemite) running R 3.2.0.
I've just installed slidify following the documentation on its website. In short:
require(devtools)
install_github("slidify", "ramnathv")
install_github("slidifyLibraries", "ramnathv")
Then load and…

kliron
- 4,383
- 4
- 31
- 47
4
votes
0 answers
Navigating in slidify presentation
I have created a HTML5 presentation with slidify using the io2012 framework.
I am actually struggling with the navigation inside the presentation:
is there a way to link between slides, e.g. jump back to slide x from slide y? I know I can do this…

Laura
- 113
- 4
4
votes
2 answers
How to deal with double braces in code chunk?
I am writing Rmd files introducing the whisker package. And use slidify to compile it to html slides.
Therefore it is inevitable to use {{ and }} in the code. I wrote the following code in the Rmd file:
```{r}
tpl <- "
Against:…

TomHall
- 286
- 3
- 15
4
votes
1 answer
Continuation of Numbered List in Slidify
How do you continue a numbered list onto a new slide in slidify?
My code looks as follows:
---
title : Another Introductory R Session
subtitle :
author : Christopher Meaney
job : Biostatistician, University of…

Chris
- 3,401
- 5
- 33
- 42
4
votes
1 answer
Font Size and Line Spacing R Slidify
I am trying to create my first Slidify presentation. I am relatively new to JS, CSS and HTML5. I am using the following YAML material and R Markdown code. I want to create a simple slide showing that R can be used as a big calculator. My problem is…

Chris
- 3,401
- 5
- 33
- 42
4
votes
0 answers
Issues converting HTML slides to pdf using slidify
Here is the first part of the resport:
The code is done in Rmd, and i`m using slidify to create HTML slides in order to convert them to pdf. More details below the code.
---
title : Planes Control
subtitle : Gerencia de Inteligencia…

user3585498
- 41
- 1