Since my last update of Texlive, I have conflict when loading animate and exerquiz in the same document: the document compiles, the animation plays well in Acrobat, but when I open the pdf with another reader (evince, okular,...) that do not support animations, I have only a white rectangle in place of my animation, instead of the first frame.
MWE:
\documentclass{standalone}
\usepackage{animate}
%\usepackage{exerquiz} % uncomment this line and the animation preview disappear
\begin{document}
Watch this counter:\begin{animateinline}[loop,autoplay,poster=0,controls]{2}
\multiframe{10}{in=0+1}{%
\fbox{\in}
}
\end{animateinline}
\end{document}
When I compile this MWE, and open it in evince, I see the counter 0 in the fbox, and the controls beneath.
When I uncomment the \usepackage{exerquiz} line and compile this MWE, and open it with evince, I see nothing except "Watch this counter:"; but in Acrobat the animation still plays.
This did not happen before I updated Texlive; I always saw the first frame in evince. How can I restore the old behaviour?