😎 Give your xaringan slides some style
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Garrick Aden-Buie f3e768a738 Oops, setup README.Rmd > github README.md 8年前
R Initial commit, MWP 8年前
inst/resources Initial commit, MWP 8年前
man Initial commit, MWP 8年前
tests Initial commit, MWP 8年前
.Rbuildignore Oops, setup README.Rmd > github README.md 8年前
.gitignore Initial commit, MWP 8年前
DESCRIPTION Add package dependencies 8年前
NAMESPACE Initial commit, MWP 8年前
README.Rmd Oops, setup README.Rmd > github README.md 8年前
README.md Oops, setup README.Rmd > github README.md 8年前
xaringanthemer.Rproj Initial commit, MWP 8年前

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