在YAML标头中设置主题选项以进行投影仪演示?

时间:2018-10-17 02:06:27

标签: rstudio r-markdown beamer

我正在使用Metropolis主题在RStudio中进行投影仪演示。我想使用一些选项,例如 sectionpage = none ,但我不知道将选项放在YAML标头中的位置。

我只有基本知识:

---
title: "TemplatePresentation"
author: "MightyMauz"
output: 
  beamer_presentation: 
    theme: metropolis
---

如何传递都市主题选项?

1 个答案:

答案 0 :(得分:1)

使用header-includes来声明要使用的主题:

---
title: "TemplatePresentation"
author: "MightyMauz"
classoption: "portrait"
output: beamer_presentation
header-includes:
  - \usetheme[sectionpage = none]{metropolis}
---