Soooooooolarized!!!!!

Hiroaki Yutani
2015/2/11

solarized

Solarized is a color scheme

Solarized is a sixteen color palette (eight monotones, eight accent colors) designed for use with terminal and gui applications. (http://ethanschoonover.com/solarized)

reveal.js can go solarized

Several themes are available in reveal.js by default; Our beloved solarized is off cource included! The CSS is here

Bangers

This is a web font by google. https://www.google.com/fonts#UsePlace:use/Collection:Bangers

Be careful, importing font in CSS files seems not to work(I don't know why).

@import url(https://fonts.googleapis.com/css?family=Bangers);

Whether you use webfonts with custom CSSs or not, you have to import at the first slide using font-import like this:

font-import: http://fonts.googleapis.com/css?family=Bangers

Syntax Highlighting And Tables

library(broom)
library(knitr)
library(magrittr)
lmfit <- lm(mpg ~ wt, mtcars)
tidy(lmfit) %>% kable
term estimate std.error statistic p.value
(Intercept) 37.285126 1.877627 19.857575 0
wt -5.344472 0.559101 -9.559044 0

If "type: section" is specified, a slide has a different looks.

"type: prompt" is like this

End