由于大写德语变音符号导致 beamer frametitle 中的行距不一致

由于大写德语变音符号导致 beamer frametitle 中的行距不一致

我有以下问题:

假设我有一个包含两行的框架标题。根据第二行是否包含使用行最上部的字符(如“Ü”(德语变音符号)),两行之间的间距会有所不同。

切换幻灯片时,标题的第二行可能会上下跳动(这是不受欢迎的:-))。

据我测试,此问题仅发生在框架标题中,而不会出现在正文中。我还找到了一篇帖子,描述了章节标题的类似问题,但我无法弄清楚如何使用 beamer 来解决这个问题: titlesec:我不想要的垂直空间

欢迎任何想法!

编辑:这是MWE:

\documentclass[mathserif]{beamer}
\usepackage[utf8]{inputenc}

\begin{document}

\begin{frame}
  \frametitle{This is a very long frame title. There is no capital umlaut, so the spacing is ok.}
\end{frame}

\begin{frame}
  \frametitle{This is another very long frame title. The following capital umlaut Ü changes the spacing.}
\end{frame}

\end{document}

答案1

你可以试试

\setbeamerfont{frametitle}{size=\linespread{1.1}\Large}

因此框架标题行将会分开一些,为重音大写字母留出空间。

相关内容