我正在努力实现一个功能,在乳胶灯,这将有助于我的演讲准备很多。我希望下面的MWE创建一个备份幻灯片,链接它并在appendbackupframes之后插入它,而不是将内容放在脚注中:
\documentclass[handout]{beamer}
\newcommand{\additionalinfo}[2]{\beamerbutton{#1}\footnote{#2}}
\newcommand{\appendbackupframes}{}
\begin{document}
\begin{frame}
\additionalinfo{Beyond the world}{Show me something fancy, like a theorem
\begin{theorem}
Hello!
\end{theorem}}
\end{frame}
\appendbackupframes
\end{document}换句话说,我希望这段代码按照如下方式编译:
\documentclass{beamer}
\usepackage{hyperref}
\begin{document}
\begin{frame}
\hyperlink{backup:1}{\beamerbutton{Beyond the world}}\label{backupback:1}
\end{frame}
\begin{frame}{Beyond the world}
\label={backup:1} Show me something fancy, like a theorem
\begin{theorem}
Hello!
\end{theorem}
\hyperlink{backupback:1}{\beamergotobutton{Back}}
\end{frame}
\end{document}对我来说,任何我可以在背页上工作的解决方案(即,在XeLaTeX或LuaLaTeX中编译没有问题,但运行外部脚本进行预处理是困难的)将是有帮助的,因为它允许轻松地与协作者一起工作。
发布于 2021-09-12 20:10:11
似乎您正在寻找beamerappendixnote包:
\documentclass{beamer}
\usepackage{beamerappendixnote}
\begin{document}
\begin{frame}{Main title}
Main content \vfill
\appxnote{Beyond the world}{Show me something fancy, like a theorem
\begin{theorem}
Hello!
\end{theorem}}
\end{frame}
\printappxnotes
\end{document}

https://stackoverflow.com/questions/69154636
复制相似问题