tikz beamer add tag
samcarter
I have a circle with a gap, which I like to animate by rotating it counterclockwise.
Top Answer
samcarter
There are many possible approaches, here a very simple one just using beamer overlays:

```
\documentclass{beamer}
\usepackage{tikz}

\begin{document}
	
\begin{frame}
\begin{tikzpicture}
\path (0,0) circle [radius=3.2];
\foreach \x in {0,5,...,360}{
  \draw<+>[overlay,->] (\x:3) arc (\x:350+\x:3);
}
\node at (0,0) {$(0.\overline{0431162355})_{7} \times$};
\node [anchor= 90] at (90:3) {$(1)_7$};
\node [anchor=-90] at (90:3){0};
\end{tikzpicture}
\end{frame}	
	
\end{document}
```

![document.gif](/image?hash=25463b47f9054f66e192d06c7b089d2c5a672e946c5a7ce9e2913f20f7373d5d)

This room is for discussion about this question.

Once logged in you can direct comments to any contributor here.

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.