Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.13 KB

README.md

File metadata and controls

42 lines (27 loc) · 1.13 KB

📢 Talk templates

Before starting with hygge template

Install the following packages:

install.packages('countdown')
devtools::install_github("ropenscilabs/icon")

Once the ìcon package has been installed, you will have to download icons libraries.

icons::download_ionicons()
icons::download_fontawesome()

Be aware that the package is named icon on github but uses the namespace icons.

Xaringan templates

About

The xaringan R package eases the creation of slideshows with remarkjs through R Markdown. There are several themes available (see https://github.com/yihui/xaringan/wiki/Themes). To render a presentation, use rmarkdown::render("index.Rmd").

Themes

  • tamu_like inSileco theme inspired by the TAMU template.
  • hygge: use the hygge theme.

How to get a pdf version

Use pagedown as suggested in yihui/xaringan#168 :

install.packages('pagedown')
pagedown::chrome_print('index.html')