latex插入动图

1 首先在目标latex文件夹中加入一个figs文件夹:

里面放入逐帧图片(这里27张图片)gif转逐帧png方法

2 manuscript.tex中写入如下命令:

最上面加入宏

\usepackage{animate}

动图命令如下(假设图片是从 1-25):

\begin{figure}[!h]
    \centering
    \animategraphics[width=10cm,height=10cm, autoplay, loop, controls]{10}{fig/images-}{1}{25}
    \caption{\small (Color animation online) interaction}
    \label{fig1}
\end{figure}

效果如下:


你可能感兴趣的:(latex插入动图)