如何让beamer演示文稿的轮廓出现在Rmarkdown中的每个部分之前,就像常规beamer的this code一样?
发布于 2017-03-16 15:59:16
将此代码放在header.tex中
\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Plan}
\tableofcontents[currentsection]
\end{frame}
}并使用以下命令进行编译:
---
output:
beamer_presentation:
includes:
in_header: header.tex
---https://stackoverflow.com/questions/42813826
复制相似问题