😎 Give your xaringan slides some style
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Garrick Aden-Buie f3e768a738 Oops, setup README.Rmd > github README.md 8 anos atrás
R Initial commit, MWP 8 anos atrás
inst/resources Initial commit, MWP 8 anos atrás
man Initial commit, MWP 8 anos atrás
tests Initial commit, MWP 8 anos atrás
.Rbuildignore Oops, setup README.Rmd > github README.md 8 anos atrás
.gitignore Initial commit, MWP 8 anos atrás
DESCRIPTION Add package dependencies 8 anos atrás
NAMESPACE Initial commit, MWP 8 anos atrás
README.Rmd Oops, setup README.Rmd > github README.md 8 anos atrás
README.md Oops, setup README.Rmd > github README.md 8 anos atrás
xaringanthemer.Rproj Initial commit, MWP 8 anos atrás

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")
)
```