I want to draw the following figure using TikZ in LaTeX with the following requirements:
- Numbers are evenly distributed around the circle.
- I can control the size of the circle.
- The size of the numbers can also be modified.
Edit: after following the comments, I get something that works.
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\tikzstyle{every node}=[font=\large]
\def\numofpoints{9}
\def\labelpatt{{2,3,1,8,7,9,0,6,4,5}}
\node[circle,draw,minimum width=2cm] (bigc) {};
\foreach \x in {0,...,\numexpr\numofpoints-1\relax}
{
\node (l-\x) at (360/\numofpoints*\x+90:1.2cm)
{\pgfmathparse{\labelpatt[\x]}$\pgfmathresult$};
}
\end{tikzpicture}
\end{document}


