我提前表示抱歉,我无法发布一个最小可行示例,但直到下周一我才能使用实际拥有 TEX 文件的 PC。
我正在使用 制作演示文稿beamer
,所有图片都有带参考的脚注。我使用footnotemark
和footnotetext
解决方法实现了这一点(因为图片在列环境中)。
当我展示经过修改的同一张图像时,有两三张幻灯片,这些修改是一步一步发现的(在 Photoshop 中添加了线条和多边形的多张图像,这些图像是通过叠加选项插入的beamer
。\includegraphics
因此,\includegraphics<1-3,9>
例如,我有许多带有不同叠加层的图像。特别是图像是一个头骨,我一步一步地添加线条和框来显示一些首字母缩略词和一些特定位置。所以我想有一列带有文本的内容,并且 pdf 的起诉是相同的图像,但在其顶部添加了特定内容。
基本图像显然是相同的,仅添加了一些多边形,并且具有相同的原点,因此需要相同的脚注来指定书籍参考。
当我在图像环境的每一行上使用footnotemark
带有或不带有[]
数字规范时,我当然会得到带有正确图像的 PDF,但是会带有许多漂浮在空白处的数字标记,例如footnotemark
多次添加相同的数字或增加的数字。
例如,我有一张图像,上面有三个多边形。当我回顾整个幻灯片时,这张图片显示在前三个叠加层和最后一个叠加层中。然后我在这张图片下面有 14 14 14 14 14 等,所有脚注的标记(如果我已为所有 a 指定footnotemark
)[14]
。如果我仅在最后一张图片上使用标记,则前一张图片没有编号,只有最后一张图片中有正确的标记。
有没有办法通过幻灯片用单一且稳定的标记来标记这些多幅图像?这样 PDF 中的图像会随着添加的线条和多边形而改变,而不会扰乱脚注的参考?
我尝试了两种方法:第一:将这些图像逐一放入不同的框架中。这样就无需叠加,而是一个框架,其中包含完全相同的文本但不同的图像。这样是可以的,但所有脚注都需要手动编号。第二:列出所有带有includegraphics
不同图像的,然后才使用footnotemark
。这个方法可行,但我在图片的右下角用一个小的标记数字标记了所有演示文稿,而这两个或三个框架(对于框架,我的意思是投影仪框架,所以是三个不同的东西)在图像下方大约一行半处有一个小数字。
抱歉,这篇文章太冗长了,也许我的英语不好,但这不是我的母语,也许我对问题的描述有点过头了,这是我的错。如果没有 MWE 就无法解决问题,那么我将在下周一编辑这篇文章。我希望在周一之前得到一些建议,以便在当天首先解决这个问题。
提前致谢,
声发射
编辑:我附上了一个我现在随时制作的非常简单的文件。想法是一样的,一列列表,左边是一张图片。图片相同但不完全相同,我用油漆制作了不同的图层。基本图像头骨的来源是一本我需要引用的书。不要关注文本的叠加,在原始文件中,前四个和后四个是分组的,因为图像来自不同的视图(尽管是同一本书的同一页)。不要关注addtocounter
,这是使事情与编号一起工作的东西,因为上一张幻灯片中的许多标记都是手动完成的。
\documentclass[11pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usetheme{Warsaw}
\begin{document}
%\author{}
%\title{}
%\subtitle{}
%\logo{}
%\institute{}
%\date{}
%\subject{}
%\setbeamercovered{transparent}
%\setbeamertemplate{navigation symbols}{}
\frame[plain]{\maketitle}
\begin{frame}\frametitle{What we measure?} \framesubtitle{Body measurements:}
\begin{columns}
\begin{column}{0.40\textwidth}
Head-portion measurements:
\begin{enumerate}
\item<1-4,9> HL
\item<2-4,9> HW
\item<3-4,9> IO
\item<4,9> IN
\item<5-8,9> NE
\item<6-8,9> HH
\item<7-8,9> ED
\item<8,9> ML
\end{enumerate}
\end{column}
\begin{column}{0.60\textwidth}
\centering {
\includegraphics<1>[width=1\columnwidth]{skull1} \par \only<1>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<2>[width=1\columnwidth]{skull2} \par \only<2>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<3>[width=1\columnwidth]{skull3} \par \only<3>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<4>[width=1\columnwidth]{skull4} \par \only<4>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<5>[width=1\columnwidth]{skull5} \par \only<5>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<6>[width=1\columnwidth]{skull6} \par \only<6>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<7>[width=1\columnwidth]{skull7} \par \only<7>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<8>[width=1\columnwidth]{skull8} \par \only<8>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<9>[width=0.70\columnwidth]{skull9} \par \only<9>{\footnotesize{\textit{Podarcis} spp. head scheme} }
}\footnotemark
\end{column}
\end{columns}
\addtocounter{footnote}{1}
\footnotetext{Edited version \\ \hspace{1em} Original from \cite{randomcitation}}
\end{frame}
\end{document}
答案1
我设法找到了一个解决方案,相当“平庸”。对于那些可能觉得这很有用的人来说:
每一张图片都需要一个附加的个人脚注标记\only<>
。
因此,我<>
为 指定了一个选项编号\includegraphics
,\only<>
为 指定了\footnotemark[]
带有数字选项的 ,最后\only<>
为图像的标题指定了一个。<> 内的每个数字都是相同的。
我的第一个错误是相信\footnotemark
直接附加到具有指定覆盖的图像上会自动将相同的图像覆盖应用到标记上。
例子:
\includegraphics<1>[width=1\columnwidth]{anatomiatestasuperiore0}\only<1>{\footnotemark[15]} \par \only<1>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<2>[width=1\columnwidth]{anatomiatestasuperiore1}\only<2>{\footnotemark[15]} \par \only<2>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<3>[width=1\columnwidth]{anatomiatestasuperiore2}\only<3>{\footnotemark[15]} \par \only<3>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<4>[width=1\columnwidth]{anatomiatestasuperiore3}\only<4>{\footnotemark[15]} \par \only<4>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<5>[width=1\columnwidth]{anatomiatestasuperiore4}\only<5>{\footnotemark[15]} \par \only<5>{\footnotesize{\textit{Podarcis} spp. head scheme - top view} }
\includegraphics<6>[width=1\columnwidth]{anatomiatestalaterale0}\only<6>{\footnotemark[15]} \par \only<6>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<7>[width=1\columnwidth]{anatomiatestalaterale1}\only<7>{\footnotemark[15]} \par \only<7>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<8>[width=1\columnwidth]{anatomiatestalaterale2}\only<8>{\footnotemark[15]} \par \only<8>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<9>[width=1\columnwidth]{anatomiatestalaterale3}\only<9>{\footnotemark[15]} \par \only<9>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<10>[width=1\columnwidth]{anatomiatestalaterale4}\only<10>{\footnotemark[15]} \par \only<10>{\footnotesize{\textit{Podarcis} spp. head scheme - lateral view} }
\includegraphics<11>[width=0.60\columnwidth]{anatomiatesta}\only<11>{\footnotemark[15]} \par \only<11>{\footnotesize{\textit{Podarcis} spp. head scheme} }
\end{column}
\end{columns}
\addtocounter{footnote}{2}
\footnotetext{Edited version \\ \hspace{1em} Original from \cite{citazione2016random}}