LaTeX Beamer Warsaw 主题自定义标题水平目录

LaTeX Beamer Warsaw 主题自定义标题水平目录

我正在使用带有 Warsaw 主题的 beamer 创建演示文稿。现在我想更改标题以将各节和子节并排显示,而不是上下显示。

通常的华沙主题:

vertikal

我正在寻找:

horizontal sections

相应的子部分应显示在右侧的蓝色条纹中。因此实际上只需将原始主题从垂直显示部分和子部分改为水平显示即可。

我发现这段代码部分满足了我的要求。但是随后子部分就会消失。

\setbeamertemplate{headline}{%
\leavevmode%
  \hbox{%
    \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex]{palette quaternary}%
    \insertsectionnavigationhorizontal{\paperwidth}{}{\hskip0pt plus1filll}
    \end{beamercolorbox}%
  }
}

LaTeX Beamer 中的自定义标题?

感谢您的帮助!

答案1

您可以使用compressbeamer 选项:

\documentclass[compress]{beamer}

\usetheme{Warsaw}

\begin{document}

\section{title}
\section{titlea}
\subsection{title}
\subsection{titlea}
\begin{frame}
    abc
\end{frame} 

\end{document}

enter image description here

相关内容