¿Cómo hago un círculo relleno animado que se hace más pequeño y cambia de color? Estoy usando la clase proyector.
Respuesta1
Suponiendo que quieras Beamer nuevamente.
\documentclass{beamer}
\usepackage{tikz}
\usepackage{amsmath}
\newcount\mypar
\begin{document}
\transduration{2}
\animate<2-22>
\begin{frame}[t,fragile]{Frame title}
\animatevalue<2-21>{\mypar}{0}{20}
\centering
\begin{tikzpicture}
\pgfmathtruncatemacro{\myfrac}{50+50*cos(\mypar*18)}
\pgfmathsetmacro{\myradius}{3+cos(\mypar*18)}
\path[use as bounding box] (-4.2,-4.2) rectangle (4.2,4.2);
\fill[yellow!\myfrac!red] circle[radius=\myradius];
\end{tikzpicture}
\end{frame}
\end{document}
Para mostrar la animación en una presentación, visualícela con acroread en modo de pantalla completa.