I have this code:
\documentclass{beamer}
\mode<presentation> {
\usetheme{Warsaw}
}
\usepackage{tikz}
\AtBeginSection[]
{
\begin{frame}
\tableofcontents[currentsection]
\end{frame}
}
\begin{document}
\begin{frame}
\frametitle{Hello}
\begin{center}
\begin{tikzpicture}
\foreach \t in {1,...,40}
{
\only<\t>{\node [circle,draw] (a) at (22:11) {\t};}
}
\end{tikzpicture}
\end{center}
\end{frame}
\end{document}
I would like to have a blank frame in the first slide then I start counting.
I want exactly this:
\begin{tikzpicture}
\foreach \t in {1,...,40}
{
\only<\t+1>{\node [circle,draw] (a) at (22:11) {\t};}
}
\end{tikzpicture}
But this is does not work. I think the problem is with \t+1.