Rmarkdown beamer 中的图形临时化

figure temporisation in Rmarkdown beamer

第一次尝试 Rmarkdown,我找不到任何地方如何进行一些基本的 beamer 操作。例如,我想在幻灯片中的某些文本之后显示一个图形,或者用另一个图形替换一个图形,但仍然在一个框架内。 我该怎么做:

\only<1>{![](figureA.pdf)}
\only<2>{![](figureB.pdf)}

有人可以告诉我使用 Rmarkdown 进行幻灯片临时化的基础知识吗?

Beamer 重新定义了各种宏,包括 \includegraphics,以接受覆盖参数。您可以像这样在 rmarkdown 中使用它们:

---
output: 
  beamer_presentation:
    theme: "CambridgeUS"
    keep_tex: true

---

# test

text

\includegraphics<+>[width=.5\textwidth]{example-image-a}
\includegraphics<+>[width=.5\textwidth]{example-image-b}