class: center, middle, inverse, title-slide # Example Slides ## With a super amazing subtitle --- # Headline ```r iris %>% ggplot(aes(Sepal.Length, Sepal.Width, col = Species)) + geom_point() ``` <img src="xaringan_example_files/figure-html/unnamed-chunk-2-1.png" style="display: block; margin: auto;" /> --- class:middle ## Centering This slide is now filled from the center due to `class:middle` ??? * Using `???` I can hide notes. * I can access these from my knitted html document by pressing `P` (i.e. going into presentation mode.) * Also I can clone the presentation by pressing `C` --- class:middle ### Line highlighting via #<< ```r mpg %>% ggplot(aes(hwy, cty, col = class)) + * geom_jitter() # Figure is shown on next slide! (due to --) ``` -- <img src="xaringan_example_files/figure-html/unnamed-chunk-4-1.png" style="display: block; margin: auto;" /> More information in the [original intro presentation](https://slides.yihui.org/xaringan/#1).