Code: Select all
\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{centering}
% Define a few constants for easy configuration
\def\radius{2cm}
\def\onedegrad{1.8cm}
\def\fivedegrad{1.75cm}
\def\tendegrad{1.7cm}
\def\labelrad{1.6cm}
\begin{tikzpicture}[scale=1]
% adding a subtle gray tone to add a bit of "personality"
\shade[shading=radial, inner color=white, outer color=gray!15] (0,0) circle (\radius);
\draw (0,0) circle (\radius);
\draw[fill=black] (0,0) circle (.06mm);
\node[draw, circle, inner sep=.2mm] (a) at (0,0) {};
% helper lines
%\foreach \x in {0, 30, ..., 360} \draw[very thin, gray!40] (a) -- (\x:\radius);
% main lines
\foreach \x in {0, 6,...,360} \draw (\x:\onedegrad) -- (\x:\radius);
% labels and longer lines at...but have problem with the node
\foreach \x in {0,30,...,330}
{
\node[scale=0.5] at (360-\x+90:\labelrad) {\x};
\draw (\x:\tendegrad) -- (\x:\radius);
};
\end{tikzpicture}
\end{centering}
\end{document}