制作具有复杂动画的乳胶演示文稿

制作具有复杂动画的乳胶演示文稿

我想在 beamer 中进行演示,期望输出如下: 期望输出

没有 MWE,因为我不知道该怎么做。帮帮我吧……

编辑 1:我还想为这个图添加一个标题。另外,是否也可以使用方程式制作这种动画?

答案1

举一个简短的例子,供您参考:

\documentclass{beamer}

\usepackage{tikz}
\usetikzlibrary{overlay-beamer-styles}

\begin{document}

\begin{frame}
\begin{tikzpicture}
\node {\includegraphics[width=.5\textwidth]{example-image}};
\node[visible on=<2>] (a) at (4,-2) {text};
\draw[<-,red,visible on=<2>] (0,1) -- (a);
\end{tikzpicture}
\end{frame}

\end{document}

在此处输入图片描述

相关内容