当使用全屏时,我对投影仪按钮重定向到的框架的位置有疑问。
在下面的例子中,当我点击第一帧中的按钮时,它会以正确的方式重定向到第三帧,但是当我点击“后退”按钮返回到第一帧时,结果却是我在第一帧的中间,在第一帧和第二帧之间。我建议编译代码并直接在 pdf 中检查这一点,这样会更清楚。
当以全屏模式显示 pdf 时,我希望按钮始终重定向到它指向的全屏。我该怎么做?
PS:在我的原始文档中,第一种情况下也出现了这个问题。
\documentclass{beamer}
\begin{document}
\begin{frame}{Frame 1}
\label{frame1}
This is the frame in which there is a button \hyperlink{frame3}{\beamerbutton{link}}
\end{frame}
\begin{frame}{Frame 2}
\label{frame2}
This is just a random frame
\end{frame}
\begin{frame}{Frame 3}
\label{frame3}
This is the frame where the button redirects to \hyperlink{frame1}{\beamerbutton{back}}
\end{frame}
\end{document}