我想用一个例子来说明我的问题
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{enumerate}
\frametitle{Cryptography}
\item stream cipher
\item block cipher
\end{enumerate}
\end{frame}
\end{document}
我想要做的是,当我转到下一页时,我希望首先显示\item stream cipher
我要说的内容。谁能帮助我?
答案1
使用label=<name>
的选项frame
,您可以将<name>
其用作 的目标\hyperlink
;在下面的示例中,第一个框架上的每个项目都是指向不同框架的超链接,您可以在其中描述概念。此外,每个解释性框架都有一个“返回”按钮(另一个超链接),允许您返回到枚举列表:
\documentclass{beamer}
\begin{document}
\begin{frame}[label=init]
\frametitle{Cryptography}
\begin{enumerate}
\item \hyperlink{stream}{stream cipher}
\item \hyperlink{block}{block cipher}
\end{enumerate}
\end{frame}
\begin{frame}[label=stream]
\frametitle{Description of stream cipher}
test for stream
\vfill
\hyperlink{init}{\beamerbutton{Go back}}
\end{frame}
\begin{frame}[label=block]
\frametitle{Description of block cipher}
test for block
\vfill
\hyperlink{init}{\beamerbutton{Go back}}
\end{frame}
\end{document}
经过聊天讨论:
\documentclass{beamer}
\usetheme{Madrid}
\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
\begin{document}
\section{Cryptography}
\subsection{Stream cipher}
\begin{frame}
\frametitle{Stream cipher}
Description for stream cipher.
\end{frame}
\subsection{Block cipher}
\begin{frame}
\frametitle{Block cipher}
Description for block cipher.
\end{frame}
\end{document}