我有以下代码:
\documentclass{article}
\usepackage{animate}
\listfiles
\begin{document}
\animategraphics[palindrome,autoplay,width=\textwidth,controls]{5}{Testsaves}{0}{1}
\end{document}
它需要同一文件夹中的两个图像(Testsaves0 和 Testsaves1)。如果我使用 pdflatex 编译它,则一切正常,当我打开它时,它会在 Adobe Acrobat 中动画显示。按钮也可以正常工作。
如果我使用 LuaLaTeX 编译相同的代码,它只包含 pdf 中的第一个图像,并且什么也不会发生。
从日志文件中:
pdflatex:
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
)) <./Testsaves0.png> <./Testsaves1.png>
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 6.
LuaLaTeX:
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
))<./Testsaves0.png>
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 6.
系统是 Windows 7 PC,TeXLive 2014 已完全更新至今天。我认为它以前可以正常工作,但我不能 100% 确定。我尝试将动画包回滚到我最早的备份版本 (35387),但这并没有改变任何东西。
文件列表:
article.cls 2014/09/29 v1.4h Standard LaTeX document class
size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
animate.sty 2014/12/04 PDF animations from files and inline graphics
keyval.sty 2014/10/28 v1.15 key=value parser (DPC)
ifthen.sty 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
ifpdf.sty 2011/01/30 v2.3 Provides the ifpdf switch (HO)
atbegshi.sty 2011/10/05 v1.16 At begin shipout hook (HO)
infwarerr.sty 2010/04/08 v1.3 Providing info/warning/error messages (HO)
ltxcmds.sty 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
ifluatex.sty 2010/03/01 v1.3 Provides the ifluatex switch (HO)
ifdraft.sty 2008/08/11 v1.3 Detect class options draft and final (HO)
calc.sty 2014/10/28 v4.3 Infix arithmetic (KKT,FJ)
atenddvi.sty 2007/04/17 v1.1 At end DVI hook (HO)
zref-abspage.sty 2012/04/04 v2.24 Module abspage for zref (HO)
zref-base.sty 2012/04/04 v2.24 Module base for zref (HO)
kvsetkeys.sty 2012/04/25 v1.16 Key value parser (HO)
etexcmds.sty 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
kvdefinekeys.sty 2011/04/07 v1.3 Define keys (HO)
pdftexcmds.sty 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO)
luatex-loader.sty 2010/03/09 v0.4 Lua module loader (HO)
auxhook.sty 2011/03/04 v1.3 Hooks for auxiliary files (HO)
zref-lastpage.sty 2012/04/04 v2.24 Module lastpage for zref (HO)
atveryend.sty 2011/06/30 v1.8 Hooks at the very end of document (HO)
animfp.sty 2009/07/23 fixed point addition for animate.sty
graphics.sty 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR)
trig.sty 1999/03/16 v1.09 sin cos tan (DPC)
graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
supp-pdf.mkii
epstopdf-base.sty 2010/02/09 v2.5 Base part for package epstopdf
grfext.sty 2010/08/19 v1.1 Manage graphics extensions (HO)
kvoptions.sty 2011/06/30 v3.11 Key value format for package options (HO)
epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
***********
答案1
animate 测试图形的同一性,以避免两次包含相同的文件。此测试对 lualatex 失败:的 luatex 实现似乎有故障。使用 lualatex 时,我为两个图形获得相同的值,但使用 pdflatex 编译时获得不同的值pdftexcmds
。\pdf@filemdfivesum
您可以通过强制 Animate 仅检查文件名来解决这个问题。但我建议向 Heiko Oberdiek 发送错误报告。
\documentclass{article}
\usepackage{animate}
\makeatletter\def\@anim@pdfmdfivesum#1{#1}\makeatother
\begin{document}
\makeatletter
\pdf@filemdfivesum{gans1.png}
\pdf@filemdfivesum{gans2.png}
\makeatother
\animategraphics[palindrome,autoplay,width=\textwidth,controls]{5}{gans}{1}{2}
\end{document}
答案2
animate
使用\pdf@filemdfivesum
该pdftexcmds
包来避免多次包含同一文件。它会计算要嵌入的文件的 MD5 校验和。
报告的错误仅发生在 Windows 上。
原因是 Windows 区分以文本和二进制模式打开文件。Cfopen()
映射到 Lua并使用相同的参数列表。应在调用中添加io.open()
标志(二进制模式) ,以确保在所有平台上正确读取文件。b
io.open()
此补丁修复了该问题:
--- texmf-dist/scripts/oberdiek/pdftexcmds.lua.orig
+++ texmf-dist/scripts/oberdiek/pdftexcmds.lua
@@ -250,7 +250,7 @@
if not offset then
offset = 0
end
- local filehandle = io.open(foundfile, "r")
+ local filehandle = io.open(foundfile, "rb")
if filehandle then
if offset > 0 then
filehandle:seek("set", offset)
@@ -270,7 +270,7 @@
function filemdfivesum(filename)
local foundfile = kpse.find_file(filename, "tex", true)
if foundfile then
- local filehandle = io.open(foundfile, "r")
+ local filehandle = io.open(foundfile, "rb")
if filehandle then
local contents = filehandle:read("*a")
escapehex(md5.sum(contents))