

%Just replace the X below by the expressions that you have chosen for the numbers from 1 to 12.

%-------------------------------------------------------------------------------------------------------------------------------

\documentclass[11pt]{standalone}

\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[dvipsnames,table]{xcolor}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture}[scale=0.3]

\def\radiuscircle{16cm}
\def\radius{12cm}
%In case, adjust the value for \radius (if you want the numbers to be closer/farther to the border).

\draw[line width=1pt, color=black] (0,0) circle (\radiuscircle) ;

\node at (60 :\radius) {\Large{$X$}};%1
\node at (30 :\radius) {\Large{$X$}};%2
\node at (0 :\radius) {\Large{$X$}};%3
\node at (-30 :\radius) {\Large{$X$}};%4
\node at (-60 :\radius) {\Large{$X$}};%5
\node at (-90 :\radius) {\Large{$X$}};%6
\node at (-120 :\radius) {\Large{$X$}};%7
\node at (-150 :\radius) {\Large{$X$}};%8
\node at (-180 :\radius) {\Large{$X$}};%9
\node at (-210 :\radius) {\Large{$X$}};%10
\node at (-240 :\radius) {\Large{$X$}};%11
\node at (-270 :\radius) {\Large{$X$}};%12

\node[circle, line width=0.5mm, inner sep=0pt,minimum size=2pt, fill=black] (1) at (0, 0) {}; 

\end{tikzpicture}

\end{document}

