部分概述在beamer Rmarkdown?

时间:2017-03-15 15:18:07

标签: latex r-markdown pandoc beamer

如何在Rmarkdown中的每个部分之前显示投影仪演示的轮廓,例如this code用于常规投影仪?

1 个答案:

答案 0 :(得分:0)

将此代码放入header.tex

\AtBeginSection[]
{
 \begin{frame}<beamer>
 \frametitle{Plan}
 \tableofcontents[currentsection]
 \end{frame}
}

编译:

---
output: 
  beamer_presentation:
    includes:
      in_header: header.tex
---