% Code for clock taken from https://tex.stackexchange.com/questions/132321/generate-analog-clock-with-numbered-face % Add line cap=round,line width=3pt to tikzpicture options \pgfmathsetmacro\h{2} \pgfmathsetmacro\m{25} \pgfmathsetmacro\s{15} \draw (0,0) circle (2cm); \foreach \angle / \label in {0/3, 30/2, 60/1, 90/12, 120/11, 150/10, 180/9, 210/8, 240/7, 270/6, 300/5, 330/4} { \draw[line width=1pt] (\angle:1.8cm) -- (\angle:2cm); \draw (\angle:1.4cm) node{\textsf{\label}}; } \foreach \angle in {0,90,180,270} \draw[line width=2pt] (\angle:1.6cm) -- (\angle:2cm); \draw[rotate=90,line width=2pt] (0,0) -- (-\h*30-\m*30/60:0.7cm); % hours \draw[rotate=90,line width=1.5pt] (0,0) -- (-\m*6:1cm); % minutes \draw[rotate=90,thin,red] (0,0) -- (-\s*6:1.2cm); % seconds \path [fill=black] (0,0) circle (2pt);