无法降低框架标题高度

无法降低框架标题高度

我在减少框架标题高度方面遇到了问题。

我尝试了几种建议的解决方案,但似乎并不是全部都有效。我认为原因是我使用了\useoutertheme{sidebar}。我想问是否有任何解决方案可以调整文本大小和框架高度(黄色框架标题太大;我想将其缩小)?

\£documentclass[10pt, aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}


%\metroset{background=dark}
\usecolortheme{crane}
\useoutertheme{sidebar}


% Title Page
\title{Corporate Finance Chapter 03}
\subtitle{Class 01}
\author[]{Quoc T. Phan \\ Certified FRM - PhD. Candidate in Finance}
\institute{Department of Accounting Finance \\
            Asper School of Business \\
            University of Manitoba}
\date{2021-Jul}




\begin{document}

% TITLE PAGE
\begin{frame}{} %This should be empty otherwise there will be FRAME TITLE on TOP LEFT CORNER
\titlepage %This will give the 1st intro page
\end{frame}


% TABLE OF CONTENTS
\begin{frame}{Table of Contents}
    \tableofcontents
\end{frame}


\section{Introduction}

\begin{frame}{FRAME TITLE 01-01}
    Section 01 Slide 01
\end{frame}

\begin{frame}{FRAME TITLE 01-02}
    Section 01 Slide 02
\end{frame}


\end{document}

谢谢

在此处输入图片描述

答案1

这里的相关长度似乎是\beamer@headheight,因此您可以使用

\makeatletter
\beamer@headheight=<length>
\makeatother 

您可以<length>选择改变黄色框的高度。

例如,使用<length>= 0.8cm,您将得到以下输出:

在此处输入图片描述

如果你还想减小框架标题的字体大小,你可能会对使用

\setbeamerfont{frametitle}{size=<size>}

替换为<size>您选择的,例如\large\normalsize、 ... (为了比较:默认值为\Large

相关内容