How can I improve the code for this animation so that I can write more words? I wanted a smarter code.
\documentclass{article}
\usepackage{tikz}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0pt}%
\begin{document}
\foreach \t in {
L,
La,
LaT,
LaTe,
LaTeX
}{
\begin{tikzpicture}[scale=1]
\clip[fill=white] (0,-1) rectangle (6,1);
\node[right] at (1,0) {\Huge \t};
\end{tikzpicture}
}
\end{document}

tikzto run your MWE? I have 2.10 and am getting the error message "Package tikz Error: Extra options not allowed for clipping path command." – Stephan Lehmke Jul 14 '12 at 04:21fill=whiteto the\clip. – Claudio Fiandrino Jul 14 '12 at 07:21