Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 500
Guilherme Parreira Avatar asked Oct 18 '22 20:10

Guilherme Parreira


1 Answers

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

like image 162
samcarter_is_at_topanswers.xyz Avatar answered Oct 21 '22 15:10

samcarter_is_at_topanswers.xyz