Collection of templates for my talks
Beamer template and its Rmarkdown integration, it is based on https://github.com/SteveViss/Rimouski.
To use the dark version, comment out the line below in beamerKevCaz.tex
or
in the same line in header.tex
file if you use the Rmarkdown integration.
% \usecolortheme{KevCazDark}
For the beamer Latex, use pdflatex
like so:
pdflatex beamerKevCa.tex
To use and .Rmd
files instead, use the following command (or click in the right
place if you are a Rstudio user):
Rscript --no-init-file -e 'rmarkdown::render("DemoRmarkdown.Rmd", "all")'
Have a look at Remark (it's great). I've added Font-awesome to use some icon.
Open index.html
with your favorite Web Browser, then:
F
: full screen modeP
: toogle presenter modeC
: open a new-synchronised windowsNumber + enter
: go to Number slideH
or?
: toogle the help
Slidify is an R package that "helps you create and publish beautiful HTML5 presentations from RMarkdown". I have used it for some tutorials, very useful! Note however is author haven't updated the package since September 5th, 2015. Also note I put the presentation in a docs
folder for publication on Github.
I use the Rmarkdown integration.
- 'C' Show table of contents
- 'F' Toggles the display of the footer
- 'A' Toggles display of current vs all slides (useful for printing handouts)
- 'S' Make fonts smaller
- 'B' Make fonts larger
I use the Rmarkdown integration for ioSlides, they did a great job!
- 'f' enable fullscreen mode
- 'w' toggle widescreen mode
- 'o' enable overview mode
- 'h' enable code highlight mode
- 'p' show presenter notes
These integrations are fantastic! You can do even better by using a simple bash function (very helpful if you aren't a Rstudio user and a shell user).
rmdto() {
Rscript --no-init-file -e "rmarkdown::render('$1', output_format = 'all')";
}
- faire une simple page qui montre mes templates (on aurait un lien pour chaque, au moins les html)
- customize Slidy (so far I've used the example on the R markdown website)
- customize ioSlides (same comment as above)
- try shower and the .Rmd integration by Gabor Csardi