Ton 't Lam skrev:
> Hello,
> Is there a way to change a picture in a PDF, rather then having about 10
> pretty similar pictures in a row. It is like having an in place slide
> show. I don't mean the animate package and step through a picture. It
> would be great to have buttons to select a picture. It is meant to
> explain process flows.
You can use layers. I don't know if there is a package at ctan
that does it, but the code suggested by Michael Ritzert in
<
http://groups.google.com/group/comp.text.tex/browse_thread/thread/4eb...>
works.
\documentclass{article}
\usepackage{tikz,ocg}
\begin{document}
\begin{tikzpicture}
\begin{ocg}{Filled}{1}{1}%
\fill (0,0) circle (1cm);
\end{ocg}%
\begin{ocg}{Empty}{2}{0}%
\draw (0,0) circle (1cm);
\end{ocg}
\end{tikzpicture}
\end{document}