\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); knitr('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 version 0.5.1
. Here is my session info:
print(sessionInfo(), locale = FALSE)
## R version 2.15.0 (2012-03-30)
## Platform: x86_64-pc-linux-gnu (64-bit)
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] ggplot2_0.9.0 knitr_0.5.1
##
## loaded via a namespace (and not attached):
## [1] codetools_0.2-8 colorspace_1.1-1 dichromat_1.2-4
## [4] digest_0.5.2 evaluate_0.4.2 formatR_0.4.1
## [7] grid_2.15.0 highlight_0.3.1 MASS_7.3-17
## [10] memoise_0.1 munsell_0.3 parser_0.0-14
## [13] plyr_1.7.1 proto_0.3-9.2 RColorBrewer_1.0-5
## [16] Rcpp_0.9.10 RCurl_1.91-1 reshape2_1.2.1
## [19] scales_0.2.0 stringr_0.6 tools_2.15.0
## [22] XML_3.6-2
so keep your audience awake!