如何在Rmarkdown中的每个部分之前显示投影仪演示的轮廓,例如this code用于常规投影仪?
答案 0 :(得分:0)
将此代码放入header.tex
:
\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Plan}
\tableofcontents[currentsection]
\end{frame}
}
编译:
---
output:
beamer_presentation:
includes:
in_header: header.tex
---