I'd like to create a presentation with a walking guy. I have to graphics, with a guy in two different positions. How do I make them appear in appropriate moments while moving right at the same time? Thanks for your help:)
\documentclass[a4paper]{article}
\usepackage[cp1250]{inputenc}
\usepackage{polski}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{calc,ifthen}
\usepackage{pgf}
\usepackage{tikz}
\usepackage{animate}
\newcommand{\bt}{\begin{tikzpicture}}
\newcommand{\et}{\end{tikzpicture}}
\begin{document}
\bt
\draw (0,-0.25)circle(0.75cm);
\draw (0,-1)--(0,-3.5);
\draw(0,-1.5)--(-1,-2.5)--(-0.5,-3)--(-0.25,-3);
\draw(0,-1.5)--(1,-2.5)--(1.5,-2)--(1.25,-2);
\draw(0,-3.5)--(0,-4.5)--(-0.5,-5.5)--(0,-5.5);
\draw(0,-3.5)--(1,-4)--(0.5,-5)--(1,-5);
\et
}
\end{animateinline}
\bt
\draw (0,-0.25)circle(0.75cm);
\draw (0,-1)--(0,-3.5);
\draw(0,-1.5)--(-1,-2)--(-0.75,-2.5)--(-0.5,-2.5);
\draw(0,-1.5)--(0.5,-2.75)--(1.25,-2.5)--(1,-2.35);
\draw(0,-3.5)--(0.5,-4.5)--(-0.5,-5)--(-0.25,-5.25);
\draw(0,-3.5)--(0.5,-5.5)--(1,-5.5);
\et
\end{document}

\begin{document}, between your first code snippet and the new one. Most notably, your code lacks a\begin{animateinline}at the very least. Was it an intended change? On a side note, you can format code snippet by selecting the code and clicking the{}button above the editting field. – T. Verron Apr 27 '13 at 21:35animatepackage you mentioned in the tags. It may be hard to draw a picture to explain what an animation should be, but if you could describe it more precisely, I'm sure it would help potential answerers. – T. Verron Apr 27 '13 at 21:39