Slide layouts - yihui/xaringan GitHub Wiki

You can have one or more layouts serving for all/specific slides. By this you can give the presentation a personal touch. At the slide at which you want to start with the specific template, initialize an empty slide using layout: true. Provide a background image and you are good to go!

layout: true

background-image: url(http://oxinova.net/wp-content/uploads/2016/12/professional-powerpoint-templates-i2wpubdd.jpg)
background-size: cover

---

# name of first slide

If you want to insert a break slide, just set layout: false and reinitialize your layout afterwards:

---
layout: false
class: inverse, middle, center

# Header of empty slide


---

layout: true

background-image: url(http://oxinova.net/wp-content/uploads/2016/12/professional-powerpoint-templates-i2wpubdd.jpg)
background-size: cover
---

# Slide with layout again

Simply add class: inverse if you want to use this class style for your break slide.