Reveal.js
Install
- Install Node.js
- Install Grunt
https://github.com/hakimel/reveal.js
- Clone the reveal.js repository
git clone https://github.com/hakimel/reveal.js.git
cd reveal.js
npm install
grunt serve
Slidify
Reproducible HTML Slides from R Markdown
Install
- Install R
- Install package(devtools) from CRAN, and other dependency packages(httr, stringr, RCurl)
library(devtools)
install_github("slidify", "ramnathv")
install_github("slidifyLibraries", "ramnathv")
Generate Deck Directory
- include slidify by
library(slidify)
author("mydeck")
Generate HTML Slide
slidify("index.Rmd")
Deploy
# Github
# replace USER and REPO with your username and reponame
publish(user = "USER", repo = "REPO", host = 'github')
# Dropbox
publish('mydeck', host = 'dropbox')