How to add a title in the table of contents slide in r markdown Beamer
Asked Answered
A

1

8

In R Markdown Beamer, I included a Table of Contents (TOC) via this command:

output: 
  beamer_presentation: 
    toc: true
    slide_level: 2

Slide to be inserted the title

I need a way to make a title for the slide of TOC (and in Portuguese). I have seen some answered questions, but they were not for Beamer.

Anthotaxy answered 14/12, 2015 at 5:6 Comment(0)
P
4

You could manually insert the toc, then you have full control of the frametitle:

---
output: 
  beamer_presentation: 
    slide_level: 2
    keep_tex: true

---

## outline
\tableofcontents[hideallsubsections]

# sec 1

# sec 2

enter image description here

Philpot answered 30/10, 2019 at 13:33 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.