在 Beamer 中禁用导航子部分

在 Beamer 中禁用导航子部分

我最近在使用 beamer 主题华沙,它会自动在标题右侧显示子部分。但是,我想消除导航栏中的子部分(在图中标记为红色)。

我应该怎么办?

在此处输入图片描述

答案1

尝试添加

\renewcommand{\insertsubsectionnavigation}[1]{}
\renewcommand{\insertsubsectionnavigationhorizontal}[3]{} 

你的序言

是

\documentclass[compress]{beamer}    

\usetheme{Warsaw}   

\renewcommand{\insertsubsectionnavigation}[1]{} % added <<<<<<<<<<<<<<<<    
\renewcommand{\insertsubsectionnavigationhorizontal}[3]{} % added, used when compress <<<<<<<<<<<<<<<

\begin{document}

\section{Basics}
    \begin{frame}{Basics}{First section}
        Start of the First section
    \end{frame}
    
\subsection{Workflow}
\begin{frame}{Workflow}{First subsection}
    In the First section
\end{frame}

\subsection{Datasets}
\begin{frame}{Datasets}{Second subsection}
    In the First section
\end{frame}

\subsection{Metrics}
\begin{frame}{Metrics}{Third subsection}
    In the First section
\end{frame}

\section{Papers}
    
\begin{frame}{Papers}{Second section}
    Start of the Second section
\end{frame}
    
\end{document}

默认行为

是

相关内容