使用 wrapfigure 中的 overprint 为 beamer

使用 wrapfigure 中的 overprint 为 beamer

我正在尝试在保持文本不变的情况下更改图形。通过一些研究,我找到了overprint可以让我实现目标的环境。现在,我wrapfigure也想将其放入环境中。大致如下:

\begin{frame}
  \frametitle{General concept}
    \begin{wrapfigure}[9]{L}[10pt]{0.32\textwidth}
      \begin{overprint}
        \onslide<1>\includegraphics[width=\linewidth]{gmls-concept-0.png}
        \onslide<2>\includegraphics[width=\linewidth]{gmls-concept-1.png}
        \onslide<3>\includegraphics[width=\linewidth]{gmls-concept-2.png}
        \onslide<4>\includegraphics[width=\linewidth]{gmls-concept-3.png}
      \end{overprint}
    \end{wrapfigure}
    % texts here.
\end{frame}

我得到的输出是溢出幻灯片的图形,现在包含在定义的区域内wrapfigure。有没有办法解决这个问题?

相关内容