答案1
- 这些航行圈被称为
Smoothbars
。 - 根据这, 主题,达姆施塔特和法兰克福提供这个所谓的
outer theme
(beamer
词汇)。 - 同样有用:http://deic.uab.es/~iblanes/beamer_gallery/
\documentclass{beamer}
\usetheme{Frankfurt}
\begin{document}
\section{Section 1}
\subsection{SubSection 1}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\subsection{SubSection 2}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\subsection{SubSection 3}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\section{Section 2}
\subsection{SubSection 1}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\subsection{SubSection 2}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\subsection{SubSection 3}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\section{Section 3}
\subsection{SubSection 1}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\subsection{SubSection 2}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\subsection{SubSection 3}
\begin{frame}
\frametitle{\insertsection: \insertsubsection}
Some Text.
\end{frame}
\end{document}
答案2
除了基于smoothbars
其他主题的所有主题(在 Manuel Kuehner 博士的回答中讨论过)之外,基于mininframes
其他主题的主题还有这些导航圈,称为“迷你框架”:
\documentclass{beamer}
\usetheme{Berlin}
%\usetheme{Dresden}
%\usetheme{Ilmenau}
%\usetheme{Singapore}
%\usetheme{Szeged}
\begin{document}
\section{title}
\begin{frame}
\frametitle{title}
text
\end{frame}
\end{document}