Rmarkdown Presentation Slide Tickers

I use rmarkdown to create presentations in RStudio. I would like to get a slider at the top of the presentation. Dresden theme should support those Dresden tickers enter image description here

So is it possible to get these tickers with rmarkdown? When I knit pdf, I get a presentation without slides.

Code example:

---
title: "Example"
output: beamer_presentation
theme: Dresden
---

# R Markdown

This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.

# Slide with Bullets

- Bullet 1
- Bullet 2
- Bullet 3

# Slide with R Code and Output

```{r}
summary(cars)
```

# Slide with Plot

```{r, echo=FALSE}
plot(cars)
```
+4
source share
1 answer

I think the parameter slide_levelmay be what you are looking for:

slide_level , . , , - . , _

, slide_level: 2:

---
title: "Example"
output: 
  beamer_presentation:
    slide_level: 2
theme: Dresden
---

enter image description here

,

# R Markdown

## Description
This is an R Markdown presentation. Markdown is a simple formatting 
syntax for authoring HTML, PDF, and MS Word documents. For more 
details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that 
includes both content as well as the output of any embedded R code 
chunks within the document.

, , :

---
title: "Example"
output: 
  beamer_presentation:
    slide_level: 3
theme: Dresden
---
# Section 1
## Subsection 1
### Title A
### Title B
## Subsection 2
### Title A
## Subsection 3
### Title A
### Title B
### Title C
# Section 2
## Subsection 1
### Title A
### Title B

:

enter image description here

+4

All Articles