请问我想在我的 Beamer 演示文稿中添加一些框架但不在框架标题中添加新点。
有什么方法可以做到这一点?下面是我正在使用的主题的最小代码示例。
感谢您的帮助
\documentclass{beamer}
\usetheme{Darmstadt}
\usecolortheme{seahorse}
\begin{document}
\section{title 1}
\subsection{title 2}
\begin{frame}{Title (I)}
Show the corresponding dot (circle) above
\end{frame}
\begin{frame}{Title (II)}
Hide the corresponding dot (circle) above
\end{frame}
\end{document}
答案1
您可以使用覆盖:
\documentclass{beamer}
\usetheme{Darmstadt}
\usecolortheme{seahorse}
\begin{document}
\section{title 1}
\subsection{title 2}
\begin{frame}{\only<1>{Title (I) --- first dot}\only<2>{Title (II) --- still first dot}}
\only<1>{Content (I)}
\only<2>{Content (II)}
\end{frame}
\begin{frame}{Title (III) --- second dot}
Content (III)
\end{frame}
\end{document}