如何在 Beamer 中跳转到整个帧

如何在 Beamer 中跳转到整个帧

我尝试使用\hyperlink命令在帧之间跳转,但它不像 中的那种跳转tableofcontents。我想跳转到整个帧,而不是帧的中间。有人能帮我解决这个问题吗?

答案1

如果您计算目标帧有多少张幻灯片,则可以选择要跳转到帧内的哪张幻灯片,如下所示:

\documentclass{beamer}

\begin{document}
    
\begin{frame}
    \hyperlink{foo<2>}{jump}
\end{frame} 

\begin{frame}[label=foo]
    abc\pause def
\end{frame} 
    
\end{document}

相关内容