假设已有一张名为"animate.gif"图片,只需要两步即可将gif格式动态图片插入到latex中。
注意,animate.gif与tex文件需要放在同一个目录下,否则需要调整路径。
(1),使用如下命令
convert animate.gif -coalesce animate_%d.eps
将图片转化成40(即0到39)张eps格式图片。(对于不同的gif图片生成的数目会不同)
(2),
在latex的引用包中加入这两个包:
\usepackage{graphicx}
\usepackage{animate}
在需要插入动态图片的地方写:
\animategraphics[height=2.8in,autoplay,controls]{12}{animate_}{0}{
39}
编译后,用acroread打开,就会显示动态图了。能不能动态显示跟阅读器有很大关系,acroread是可以的。
转载于:https://www.cnblogs.com/wangchao-hhu/p/5569292.html
相关资源:Gif动态图片制作工具