让“点”显示在 Beamer 标题中

让“点”显示在 Beamer 标题中

我正在使用 Beamer 编写演示文稿,使用的是法兰克福主题。我喜欢标题中出现的表示各种幻灯片的圆点(例如此样本),但似乎无法让它们显示出来。在网上找到的各种基于法兰克福的演示文稿也无济于事。

我的基本幻灯片设置是

\begin{frame}{Here's the title}
    \begin{itemize}
        \item some points...
    \end{itemize}
\end{frame}

我怎样才能在幻灯片的标题上得到漂亮的圆圈?

答案1

请原谅我提出这个问题,答案在 *overflow 的“相关”部分中找到。长话短说:法兰克福需要子部分来呈现小圆圈;在\setcounter{subsection}{1}每个新部分标题之后更新子部分计数器就足够了(如果您对子部分不感兴趣)。

答案2

\documentclass{beamer}
\usetheme{Frankfurt}
\usecolortheme{crane}
\begin{document}
\section{foo}
\begin{frame}{foo}
bar
\end{frame}
\subsection{foobar}
\begin{frame}{baz}
baz
\end{frame}
\subsection{foobarbaz}
\begin{frame}{baz}
baz
\end{frame}
\end{document}

在此处输入图片描述

答案3

实际上,使用\stepcounter{subsection}after every\section{...}比使用 效果更好\setcounter{subsection}{1}。对于我的文档,后者放错了点的位置。

相关内容