我尝试将一些幻灯片放在附录中,但它在我的编译器上不起作用。如果我在第一次编译后添加附录,它可以工作,可能是因为导航栏尚未更新,但在第二次编译后,附录幻灯片显示在导航栏中。通常,例如为了更新交叉引用,至少需要编译两次。此外,如果我使用 Apple Preview 应用程序的幻灯片放映模式,则所有幻灯片(包括附录中的幻灯片)都会显示出来。你能帮助我吗?
梅威瑟:
\documentclass{beamer}
\usetheme{Warsaw}
\title{The Title} \author{The Author} \date{\today}
\begin{document}
\section{One}
\begin{frame}[label=main]
I suspect someone might ask about supplemental material \hyperlink{supplemental}{\beamerbutton{here}}.
\end{frame}
\appendix
\section{More}
\begin{frame}[label=supplemental]
Supplemental content. Back to \hyperlink{main}{\beamerbutton{main}}.
\end{frame}
\end{document}