标题中带有导航圈(项目符号)的 Beamer 主题

标题中带有导航圈(项目符号)的 Beamer 主题

在此处输入图片描述 我想在 Beamer 中使用 Beamer 主题进行演示,就像这样,标题中有一个填充和空心圆圈

答案1


\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}

相关内容