I am making a beamer presentation in RStudio, using the Metropolis theme. I would like to use some options, say sectionpage = none, but I don't know where to put the option in the YAML header.
I just have the basics:
---
title: "TemplatePresentation"
author: "MightyMauz"
output:
beamer_presentation:
theme: metropolis
---
How can I pass metropolis theme options?
classoption
. rmarkdown.rstudio.com/pdf_document_format#latex_options – Martin Schmelzerclassoption
is for passing something to\documentclass
, not to pass an option to a theme – MightyMauz