删除 Beamer 中导航标题和框架标题之间的空白

删除 Beamer 中导航标题和框架标题之间的空白

这是我的第一篇帖子。感谢您的帮助!

背景:我正在使用大都会主题(因为它看起来不错)和迷你框架外部(用于进度标题)构建 Beamer 演示文稿。

问题:导航标题和框架标题之间有一个空白,我无法消除(下图中它位于“第一部分”和“研究问题”之间)

期望的解决方案:我很乐意摆脱空白或用 mDarkTeal 填充它。

下面是我的代码和第三张幻灯片(带有空格的幻灯片)。谢谢!

\documentclass[10pt, compress]{beamer}
\usetheme{metropolis} % Use metropolis theme
\useoutertheme{miniframes} %Use miniframes outer

%text and background color for navigation bar
\setbeamercolor{section in head/foot}{fg=mDarkTeal, bg=mLightBrown}
\setbeamerfont{section in head/foot}{size=\scriptsize, series=\bfseries}

%Title Page Info
\title{Thanks for Your Help}
\date{\today}
\author{Me}

%Slides
\begin{document}
\maketitle
\section{First Section}

\begin{frame}
    \frametitle{Research Question}
    \begin{center} \Large{\textbf{Is this a good question?}} \end{center}
\end{frame}

\end{document}

在此处输入图片描述

答案1

要删除空白,请将打开的内容添加subsection=false到 miniframes 主题中:

\useoutertheme[subsection=false]{miniframes} %Use miniframes outer

输出:

metropolis_miniframes

答案2

为各小节定义相同的颜色:

\setbeamercolor{subsection in head/foot}{fg=mDarkTeal, bg=mLightBrown}

姆韦

相关内容