使用 RMarkdown 添加特殊的 beamer 幻灯片

Add special beamer slide using RMarkdown

我想从 RMarkdown 文件制作投影仪演示文稿。 我在这种情况下使用这个漂亮的模板:https://github.com/matze/mtheme

如何在 markdown 中指定要插入特殊幻灯片(例如附录幻灯片或突出幻灯片)而不是 "normal" 幻灯片?

此模板包含一张出色的幻灯片,我想将其用作最终幻灯片,就像他们在演示幻灯片中所做的那样 (http://mirrors.standaloneinstaller.com/ctan/macros/latex/contrib/beamer-contrib/themes/metropolis/demo/demo.pdf)

在 beamer 中,我会这样做:

\begin{frame}[standout]
Questions?
\end{frame}

Markdown 中的等价物是什么?

设置框架选项非常简单:

---
title: "Untitled"
output: beamer_presentation
theme: "metropolis"
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

##  {.standout}
Questions?