Skip to content

Instantly share code, notes, and snippets.

@jjallaire
Created August 1, 2014 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjallaire/5a9c13bbe98a05e19cfb to your computer and use it in GitHub Desktop.
Save jjallaire/5a9c13bbe98a05e19cfb to your computer and use it in GitHub Desktop.
revealjs_presentation with self_contained: false
---
title: "Untitled"
output:
revealjs_presentation:
theme: serif
self_contained: false
incremental: true
transition: none
pandoc_args: ["--css", "style.css"]
---
## R Markdown
This is an R Markdown <small>presentation</small>. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.
## Slide with Bullets
- Bullet 1
- Bullet 2
- Bullet 3
## Slide with R Code and Output
```{r}
summary(cars)
```
## Slide with Plot
```{r, echo=FALSE}
plot(cars)
```
small {font-size: 0.6em; color:grey;}
.reveal section img {margin:0px auto; border:0px}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment