I've a beamer presentation and want to use the tikz pirctures inside rendered as svgs. So far no problem, but compiling the code via pdflatex the following (minimal) example results in four pages, every second page empty.
\documentclass[beamer,tikz,preview,multi]{standalone}
\begin{document}
\begin{standaloneframe}
\begin{tikzpicture}
\node[draw](t){AAA};
\node[above of=t]{ {\visible<2>{BBB}} };
\end{tikzpicture}
\end{standaloneframe}
\end{document}
Result: 
- I need
previewfor cropping the tikzpicture - withoutpreviewit is working fine (but not cropped) - Same result for
latexandpdflatex- always double pages cropis not working either or seems to be the legacy solution
Is it a bug or am I doing something wrong? Nothing found in manual
previewoption... how to solve it... no idea! :-) – darthbith Apr 07 '15 at 12:00