如何使用 pgfplots/beamer 制作动画?

如何使用 pgfplots/beamer 制作动画?

我尝试为幻灯片上的移动添加动画效果。我使用 pgfplots 和 animate 包来实现此目的。以下是示例:

\documentclass[aspectratio=1610]{beamer}
\setbeamertemplate{navigation symbols}{}

\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{animate}

\newcommand{\Textfield}[3]{%
    \draw%
        (current page.south west) ++(#1,#2)node[anchor=south west](N0){#3}%
    ;%
}%

\begin{document}
\begin{frame}
\begin{tikzpicture}[remember picture,overlay]%
    \useasboundingbox (current page.south west) rectangle (current page.north east);%
    \Textfield{1cm}{1cm}{Moving Text}
\end{tikzpicture}
\end{frame}
\begin{frame}
\begin{animateinline}[autoplay,controls=all,%
        begin={\begin{tikzpicture}[remember picture]%,overlay
        \useasboundingbox (current page.south west) rectangle (current page.north east);},%
        end=\end{tikzpicture}]{20}%
    \multiframe{61}{dPosTy=10mm+1mm}%
    {\Textfield{1cm}{\dPosTy}{Moving Text}}%
\end{animateinline}%
\end{frame}
\end{document}

在我的结果中,我在动画中得到了文本位置的偏移。如果我在动画中使用叠加选项,我甚至会得到两个错误:
“第一帧的内容不能有零宽度”
“第一帧的内容不能有零高度”
有人能解释一下为什么会这样,以及如何正确处理吗?
提前谢谢

答案1

如果使用tikzpictureoverlay选项,则生成的 TeX 框的尺寸为零。这在环境中是不允许的animateinline,因为动画小部件的宽度、高度和深度是根据第一帧的尺寸确定的。如果它们为零,小部件大小也将为零,这没有意义。这就是您收到错误消息的原因。

我建议采用以下解决方案。首先将 (幻灯片填充) 动画排版到 中lrbox,以避免嵌套tikzpicture环境(这被认为是弃用的做法)。lrbox然后可以使用页面节点绝对放置current page

\documentclass[aspectratio=1610]{beamer}
\setbeamertemplate{navigation symbols}{}

\usepackage{animate}

\usepackage{tikz}
%\usepackage{pgfplots} % not used here
%\pgfplotsset{compat=newest}

\newsavebox\animation

\newcommand{\Textfield}[3]{\node[anchor=south west, draw] at (#1,#2) {#3};}%
%\newcommand{\Textfield}[3]{\draw (0,0) -- (#1,#2) node[anchor=south west, draw] {#3};}%

\begin{document}

\begin{lrbox}{\animation}
  \begin{animateinline}[
    autoplay,controls,
    begin={\begin{tikzpicture}
      \useasboundingbox (0,0) rectangle (\paperwidth,\paperheight);},
    end=\end{tikzpicture}
  ]{20}
    \multiframe{61}{dPosTy=10mm+1mm}{\Textfield{1cm}{\dPosTy}{Moving Text}}
  \end{animateinline}
\end{lrbox}

\begin{frame}
  \begin{tikzpicture}[overlay,remember picture]
    \node [inner sep=0pt, outer sep=0pt, anchor=base west] at (current page.south west) {\usebox\animation};
  \end{tikzpicture}
\end{frame}

\end{document}

相关内容