不想在Beamer(编织有R Markdown)柏林主题的导航中显示附录

时间:2018-12-03 16:31:35

标签: r r-markdown pandoc beamer

在我的Beamer演示文稿中,我有一个附录部分,我将使用Berlin主题使用R markdown创建该附录。当前,此部分显示在导航栏中,但我不想这样做。通过指定{-},我可以禁止在目录中打印附录,但这对导航栏没有影响。我也尝试过包括\apppendix和包appendixnumberbeamer,但都没有用。有什么建议么? (下面的可重现示例-在我的演示文稿中,代码块是对knitr::include_graphics(mylocalfilepath)的调用)

---
author: 
- Me
output:   
  beamer_presentation:
    theme: "Berlin"
    colortheme: "beaver"
    fonttheme: "structurebold"
    toc: true
    slide_level: 2
---

# Introduction 

# Section One
# Slide Two
- Words

# Appendix {-}
## Slide One
```{r}
4+4
```

1 个答案:

答案 0 :(得分:0)

代替编写# Appendix {-},直接插入适当的LaTeX命令:

---
author: 
- Me
output:   
  beamer_presentation:
    theme: "Berlin"
    colortheme: "beaver"
    fonttheme: "structurebold"
    toc: true
    slide_level: 2
---

# Introduction 

# Section One
## Slide Two
- Words

``` {=latex}
\end{frame}
\appendix
\begin{frame}<0| handout:0>
```

## Slide One
```{r}
4+4
```

这将关闭最后一帧,标记附录的开始,然后插入一个永远不会显示的空框架。这很hack,但是可以。