简体   繁体   中英

Specify innertheme for an rmarkdown beamer presentation

The default bullets in the AnnArbor theme are ugly bullet points I want to switch for the cleaner arrow type bullet points in the default theme. Do you know how I can specify the innertheme for rmarkdown's beamer presentation in R?

R Markdown often includes easy to access options to be used in the yaml front matter. However, in the event that such an option has not been made available, we can always resort to header-includes to include arbitrary LaTeX code in the preamble.

Here's how you could use that to change the innertheme :

---
title: "Untitled"
output: beamer_presentation
header-includes:
    - \useinnertheme{rectangles}
---

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM