tlmoore
tlmoore

Reputation: 401

Remove title slide from Rmarkdown beamer presentation

I feel silly for asking but I am not able to remove the title slide from my beamer presentation generated with R Markdown. I prefer to make the title slide on my own and not use the default. Thank you in advance.

Here is a MWE:

---
title: "Some Title"
author:  "tlmoore"
output: beamer_presentation
latex_engine: lualatex
classoption: "aspectratio=169, 10pt"
---

## First slide

Some text here

Upvotes: 2

Views: 664

Answers (2)

You can change the appropriate beamer template to make the title page whatever you want:

---
title: "Some Title"
author:  "tlmoore"
output: beamer_presentation
latex_engine: lualatex
classoption: "aspectratio=169, 10pt"
header-includes:
  - \setbeamertemplate{title page}{make your own titel page}
---

## First slide

Some text here

Upvotes: 1

41 72 6c
41 72 6c

Reputation: 1780

Below the classoption you can add titlepage: false to fix this problem.

Upvotes: 2

Related Questions