我正在制作 Beamer 演示文稿,并在幻灯片内容之间使用暂停。我设法使文内尾注编号和附录尾注编号可点击,并允许我来回跳转。但我不知道如何在讲义模式之外显示尾注而不重复。(每个尾注的重复次数与暂停生成的帧数相同。)我正在使用enotez
但相信这是一个更广泛的问题。
以下是示例:
\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\mode<presentation>
\useoutertheme[subsection=false, footline=authortitle]{miniframes}
\usepackage{enotez}
\setenotez{backref = true} %allows it to link back to text from clicking on the endnote
\DeclareInstance{enotez-list}{custom}{paragraph}
{
notes-sep = 1.4\baselineskip
}
\usepackage{appendixnumberbeamer}
\addtobeamertemplate{navigation symbols}{}{%
\usebeamerfont{footline}%
\usebeamercolor[fg]{footline}%
\hspace{1em}%
\insertframenumber/\inserttotalframenumber
}
\begin{document}
\section{Temporal monotonicity}
\begin{frame}{Title}
In Lecture X...
\begin{itemize}
\item funders of a public good have different discount rates and
\item a patient funder ...\endnote{Example endnote 1.}
\end{itemize}
\vspace{0.4cm}
\pause
The model we used to explore these dynamics assumed...\endnote{Example endnote 2.}\\
\vspace{0.4cm}
\pause
More text.\endnote{Example endnote 3.}\\
\vspace{0.4cm}
\pause
We first explored a ``spend at $t$ $\to$ benefit at $t$'' model...\endnote{Example endnote 4.}
\end{frame}
\appendix
\begin{frame}[t, allowframebreaks]{}
\def\newblock{}
\printendnotes[custom]
\end{frame}
\end{document}
我尝试过的事情
- 尝试使用其他方式指定叠加层,例如
<3->
在之后添加\endnote
- 研究了 beamer 上与脚注类似的问题,并探索了相应的解决方案(例如投影机中的脚注规则过早显示并带有覆盖层或者Beamer:在框架标题中使用脚注时会出现两次或者脚注与覆盖重复,并“在第二个屏幕上显示注释”)
- 尝试联系 enotez 包维护者(目前尚无回复)
- 我也尝试过类似
\only<4->
之前的方法\endnote{}
。这确实会删除重复的实例,但随后会显示第 4 帧之前所有帧的尾注内容,并且实际上只显示指定(第 4 帧)帧中的尾注。
理想的解决方案是全局的,我不需要为每个尾注指定覆盖