如何链接到已激活的框架内的特定幻灯片allowframebreaks
?所以我有一个跨越多张幻灯片的框架。我想在文档末尾链接到该框架的第二张幻灯片。如何在 beamer 中实现?我知道使用label
,我可以链接到第一张幻灯片,但不能链接到第二张或第三张幻灯片等。我将尝试制作 MWE:
\documentclass[xcolor= pdftex, dvipsnames, table, 10pt]{beamer}
\begin{document}
\usepackage{lipsum}
\begin{frame}[allowframebreaks]
Here must be content to fill at least 2 slides...
We can try Lipsum:
\lipsum[3-56]
\lipsum[3-56]
\lipsum[3-56]
\end{frame}
\begin{frame}
Here should be the link the the second slide of the previous long frame.
\end{frame}
\end{document}
答案1
该解决方案使用超目标和超链接。
\documentclass[xcolor, pdftex, dvipsnames, table, 10pt]{beamer}
\usepackage{lipsum}
\hypersetup{colorlinks}
\begin{document}
\begin{frame}[allowframebreaks]
Here must be content to fill at least 2 slides...
We can try Lipsum:
\lipsum[1-2]
\hypertarget{linkname}{Here is a link target on the second page}
\lipsum[3-10]
\end{frame}
\begin{frame}
\hyperlink{linkname}{Here} should be the link the the second slide of the previous long frame.
\end{frame}
\end{document}