I want to animate text and equations (no pictures) in LaTeX. I tried out the animate package, but I find that my text is often clipped at the top and bottom.
Here is a minimal example.
\documentclass{article}
\usepackage{animate}
\begin{document}
\begin{animateinline}[autoplay,loop]{2}
\multiframe{10}{n=0+1}{
\n
}
\end{animateinline}
\end{document}
When I compile it with pdflatex and view the result in Adobe Reader XI, the numbers are clipped at the top and bottom, as you can see here with the number 8 (zoom @ 800%):

Is there a method to prevent this? Or is the animate package not the right tool for this job?