在 YAML header 中设置主题选项以进行 beamer 演示?
Setting theme options in YAML header for beamer presentation?
我正在使用 Metropolis 主题在 RStudio 中制作 beamer 演示文稿。我想使用一些选项,比如 sectionpage = none,但我不知道将选项放在 YAML header.[=12 中的什么位置=]
我只有基础:
---
title: "TemplatePresentation"
author: "MightyMauz"
output:
beamer_presentation:
theme: metropolis
---
如何通过metropolis主题选项?
改为使用 header-includes
来声明您要使用的主题:
---
title: "TemplatePresentation"
author: "MightyMauz"
classoption: "portrait"
output: beamer_presentation
header-includes:
- \usetheme[sectionpage = none]{metropolis}
---
我正在使用 Metropolis 主题在 RStudio 中制作 beamer 演示文稿。我想使用一些选项,比如 sectionpage = none,但我不知道将选项放在 YAML header.[=12 中的什么位置=]
我只有基础:
---
title: "TemplatePresentation"
author: "MightyMauz"
output:
beamer_presentation:
theme: metropolis
---
如何通过metropolis主题选项?
改为使用 header-includes
来声明您要使用的主题:
---
title: "TemplatePresentation"
author: "MightyMauz"
classoption: "portrait"
output: beamer_presentation
header-includes:
- \usetheme[sectionpage = none]{metropolis}
---