为knitr beamer幻灯片删除部分和子部分标题的框架

时间:2016-07-04 08:51:23

标签: r latex knitr r-markdown beamer

使用法兰克福主题制作带有knitr的投影幻灯片时,PDF输出包含带有章节和子章节名称的幻灯片。

---
title: Movies
author: Chewy
output:
  beamer_presentation:
  slide_level: 3
theme: "Frankfurt"
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

#Introduction

##Background

###History

A long time ago ...

###History

... in a galaxy far far away

#The End

##This the end

### My only friend, the end 

给出这个输出......

幻灯片1-4:

enter image description here

幻灯片5-8:

enter image description here

如何在保留文件结构显示在幻灯片顶部的同时,删除带有章节和小节标题的幻灯片(2,3,6和7)?

1 个答案:

答案 0 :(得分:1)

这些框架是由命令\AtBeginSubsection{}\AtBeginSection{}生成的,您可以在YAML前面的内容中重新定义,而不执行任何操作:

---
header-includes: 
- \AtBeginSubsection{}
- \AtBeginSection{}
---