使用动画时防止尾注/脚注在投影仪上重复

使用动画时防止尾注/脚注在投影仪上重复

我正在制作 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}

示例已编译

我尝试过的事情

理想的解决方案是全局的,我不需要为每个尾注指定覆盖

相关内容