我希望能够在每张幻灯片的侧面自动显示大纲或目录,但如果某些幻灯片可以隐藏它就更好了。此大纲将随着演示的进行而更新,显示哪些要点已经涵盖。
我更喜欢一种不那么引人注目的方式来表明演示的状态,但这是一个外部要求。
答案1
Beamer 有多个主题可以自动提供此功能。例如:
\documentclass{beamer}
\usetheme{Berkeley}
\section{First Section}
\begin{document}
\begin{frame}{First frame}
Text
\end{frame}
\begin{frame}{Second frame}
Text
\end{frame}
\section{Second Section}
\subsection{sub1}
\begin{frame}{Third frame}
Text
\end{frame}
\subsection{sub2}
\begin{frame}
\frametitle{Fourth frame}
Text
\pause
more text
\end{frame}
\end{document}
这当然是高度可定制的,就像 latex 中的所有内容一样。例如,仅显示部分\usetheme[hideallsubsections]{Berkeley}
。beameruserguide
有关更多选项,请参阅第 15.4 节。