Search code examples
latexr-markdownbeamer

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

Solution

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