当应用 transpush 时,它会影响整个页面,而不仅仅是新的幻灯片内容:
平均能量损失
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}[t]{Title}
\centering
\begin{tikzpicture}
\onslide<.->{
\node(a) {\includegraphics[width=0.6\textwidth] {example-image-a}};
}
\onslide<+(1)-+(1)>{
\node[anchor=east,label={[align=left,xshift=-3mm,font=\small]left:Gruppe 1:\\ "Beschreibung Bild B"}] at ([yshift=-3.5cm]a.east){\includegraphics[width=122pt]{example-image-b}};
}
\onslide<+(1)-+(1)>
\transpush<.->[direction=180]
\node[anchor=east,label={[align=left,xshift=-5mm,,yshift=-2mm,font=\small]left:Gruppe 2:\\ "Beschreibung Bild C"}] at ([yshift=-3.5cm]a.east){\includegraphics[width=122pt]{example-image-c}};
\onslide<+(1)-+(1)>
\transpush<.->[direction=180]
\node[align=center,text width=122pt,yshift=0.5mm,anchor=east,label={[align=left,xshift=-14mm,yshift=0mm,font=\small]left:Text:}] at ([yshift=-3.5cm]a.east){\textit{Some Text}};
\onslide<1->
\end{tikzpicture}
\end{frame}
\end{document}
但是,在所有内容相同且应用 transwipe 的情况下,它只会影响新的幻灯片内容,这正是我想要的。
梅威瑟:
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}[t]{Title}
\centering
\begin{tikzpicture}
\onslide<.->{
\node(a) {\includegraphics[width=0.6\textwidth] {example-image-a}};
}
\onslide<+(1)-+(1)>{
\node[anchor=east,label={[align=left,xshift=-3mm,font=\small]left:Gruppe 1:\\ "Beschreibung Bild B"}] at ([yshift=-3.5cm]a.east){\includegraphics[width=122pt]{example-image-b}};
}
\onslide<+(1)-+(1)>
\transwipe<.->[direction=180]
\node[anchor=east,label={[align=left,xshift=-5mm,,yshift=-2mm,font=\small]left:Gruppe 2:\\ "Beschreibung Bild C"}] at ([yshift=-3.5cm]a.east){\includegraphics[width=122pt]{example-image-c}};
\onslide<+(1)-+(1)>
\transwipe<.->[direction=180]
\node[align=center,text width=122pt,yshift=0.5mm,anchor=east,label={[align=left,xshift=-14mm,yshift=0mm,font=\small]left:Text:}] at ([yshift=-3.5cm]a.east){\textit{Some Text}};
\onslide<1->
\end{tikzpicture}
\end{frame}
\end{document}
我找不到任何关于如何实现 transpush 仅适用于新幻灯片内容(如 transwipe)的提示。如有任何建议,我将不胜感激。