我正在尝试学习 animate 包。当我尝试编译一些示例代码时,我总是遇到以下问题:
**LaTex Error: File `ocgbase.sty' not found.**
我正在使用 Miktex 2.9,它自动安装了动画包。我的操作系统是 Windows 7 Enterprise。
有人能告诉我如何解决这个问题吗?
这是我尝试编译的文件:
\documentclass{article}
\usepackage{animate}
\usepackage{media9}
\usepackage{graphicx}
\begin{filecontents}{timeline.txt}
::0x0 % coordinate system & y=e^x, repeated until last frame
::1 % one blue curve per frame
::2
::3
::4
::5
::6
::7
::8
\end{filecontents}
\begin{document}
\begin{center}
\animategraphics[
label=taylor,
controls, loop,
timeline=timeline.txt
]{4}{exp_}{0}{8}
\mediabutton[
jsaction={
if(anim[’taylor’].isPlaying)
anim[’taylor’].pause();
else
anim[’taylor’].playFwd();
}
]{\fbox{Play/Pause}}
\end{center}
\end{document}
答案1
安装 ocgx2 包将修复该问题。(因为 ocgbase.sty 是 ocgx2 包的一部分,如引用 这里。