😎 Give your xaringan slides some style
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Garrick Aden-Buie f3e768a738 Oops, setup README.Rmd > github README.md před 8 roky
R Initial commit, MWP před 8 roky
inst/resources Initial commit, MWP před 8 roky
man Initial commit, MWP před 8 roky
tests Initial commit, MWP před 8 roky
.Rbuildignore Oops, setup README.Rmd > github README.md před 8 roky
.gitignore Initial commit, MWP před 8 roky
DESCRIPTION Add package dependencies před 8 roky
NAMESPACE Initial commit, MWP před 8 roky
README.Rmd Oops, setup README.Rmd > github README.md před 8 roky
README.md Oops, setup README.Rmd > github README.md před 8 roky
xaringanthemer.Rproj Initial commit, MWP před 8 roky

README.md

xaringanthemer

Easily style your xaringan slides with xaringanthemer

Installation

Currently, this is a work in progress. Try it yourself:

devtools::install_github("gadenbuie/xaringanthemer")

Make it work

To make it work, add css: xaringan-themed.css to your xaringan slides YAML header under xaringan::moonreader:

output:
  xaringan::moon_reader:
    lib_dir: libs
    css: xaringan-themed.css

Then, in the first knitr chunk, try this:

```{r setup}
options(htmltools.dir.version = FALSE)
library(xaringanthemer)
mono_dark(
  base_color = "#b6174b",
  header_font_google = google_font("Josefin Sans"),
  text_font_google = google_font("Montserrat", "300", "300i"),
  code_font_google = google_font("Droid Mono")
)
```