更改 Frankfurt Beamer 幻灯片中的默认字体大小而不影响导航栏上的间距

更改 Frankfurt Beamer 幻灯片中的默认字体大小而不影响导航栏上的间距

我正在尝试使用法兰克福主题减小在 Rmarkdown 中创建的 Beamer 演示文稿中的标准字体大小。

fontsize: 10pt当我在 YAML 中设置(根据需要)时,它会影响导航栏中的间距...请参阅下面最后一张幻灯片的屏幕截图。

我曾尝试过\setbeamerfont{headline}{size=\large}像这样问题,但我不确定将命令放在 .Rmd 文件中的什么位置 - 到目前为止我尝试过的所有地方都没有影响。

一些代码用于复制糟糕的间距......

---
title: "Untitled"
fontsize: 10pt
output:
  beamer_presentation:
    theme: "Frankfurt"
    slide_level: 3
---

# Section 1

## .

### 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

...以及标准幻灯片中的导航栏的屏幕截图

在此处输入图片描述

答案1

添加\addtobeamertemplate{frametitle}{\vskip0.5ex}{}到标题

相关内容