\documentclass{beamer}
and \title{}
, I have finished my first slide with markdown-
” instead of \begin{itemize}
and \item
; how things can be simpler?head(cars)
## speed dist
## 1 4 2
## 2 4 10
## 3 7 4
## 4 7 22
## 5 8 16
## 6 9 10
cor(cars)
## speed dist
## speed 1.0000 0.8069
## dist 0.8069 1.0000
library(ggplot2)
qplot(speed, dist, data = cars) + geom_smooth()
pandoc -s -S -i -t dzslides --mathjax knitr-slides.md -o knitr-slides.html
knitr-slides.md
is the markdown output from its source: library(knitr); knit('knitr-slides.Rmd')
Knit HTML
in RStudiopre
blocks should have max-width
and max-height
)It is good to include the session info, e.g. this document is produced with knitr. Here is my session info:
print(sessionInfo(), locale = FALSE)
## R version 3.0.1 (2013-05-16)
## Platform: x86_64-w64-mingw32/x64 (64-bit)
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] ggplot2_0.9.3.1 knitr_1.2
##
## loaded via a namespace (and not attached):
## [1] codetools_0.2-8 colorspace_1.2-2 dichromat_2.0-0
## [4] digest_0.6.3 evaluate_0.4.7 formatR_0.9
## [7] grid_3.0.1 gtable_0.1.2 labeling_0.2
## [10] MASS_7.3-28 munsell_0.4.2 plyr_1.8
## [13] proto_0.3-10 RColorBrewer_1.0-5 reshape2_1.2.2
## [16] scales_0.2.3 stringr_0.6.2 tools_3.0.1
out.width
which will be used in <img width=... />
, e.g. out.width=400px
so keep your audience awake!