每张幻灯片的标题中的TOC摘要

时间:2019-10-27 21:59:03

标签: r latex r-markdown beamer

R-Markdown中有beamer_presentation的{​​{3}}。

其中大多数在每张幻灯片的顶部(或左侧/右侧)都包含一种“导航栏”,如下所示:

list of possible R-Markdown templates

虽然我确实了解如何在R-Markdown中创建目录(通过在标题中提供toc: true,但我不知道如何将导航添加到每张幻灯片。

我也了解如何为HTML格式的R-Markdown创建浮动目录(通过toc_float: true(如Example of slider header所述),但仍然不知道如何在{{ 1}}格式。任何提示将不胜感激。

1 个答案:

答案 0 :(得分:3)

如果使用合适的投影仪主题,带有导航栏的标题将自动插入每帧中。您在问题中显示的一个称为Antibes

---
title: test title
output:
  beamer_presentation:
    theme: "Antibes"
header-includes:
  - \usepackage{tikzlings}
---

# Section name

## Subsection name

### Slide 1

\begin{tikzpicture}
\pig[scale=2]
\end{tikzpicture}   

enter image description here