如何让 tikz 图片在幻灯片上顺利移动?

如何让 tikz 图片在幻灯片上顺利移动?

下面的投影仪框架显示了一个 tikz 圆圈。我希望 tikz 圆圈能够按照一些“随机”路径在框架上平滑移动。你能帮我处理环境animateinline吗?

\documentclass{beamer}

\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{lmodern}
\usepackage{tikz}

\begin{document}

\begin{frame}

\begin{tikzpicture}
\node[draw, circle, fill=red] at (0, 0) {};
\end{tikzpicture}

\end{frame}

\end{document}

相关内容