我正在使用Metropolis主题在RStudio中进行投影仪演示。我想使用一些选项,例如 sectionpage = none ,但我不知道将选项放在YAML标头中的位置。
我只有基本知识:
---
title: "TemplatePresentation"
author: "MightyMauz"
output:
beamer_presentation:
theme: metropolis
---
如何传递都市主题选项?
答案 0 :(得分:1)
使用header-includes
来声明要使用的主题:
---
title: "TemplatePresentation"
author: "MightyMauz"
classoption: "portrait"
output: beamer_presentation
header-includes:
- \usetheme[sectionpage = none]{metropolis}
---