2

enter image description here

How to draw this using Tikz????

  • Welcome to TeX.SE! What you try so far? This is simple circle tith tick. See some examples in http://www.texample.net/ – Zarko Jun 07 '19 at 12:42
  • Draw a circle, then draw a bunch of dots (filled circles) along the border, then place nodes with labels near the dots. – John Kormylo Jun 07 '19 at 13:32

3 Answers3

4

With TikZ.

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw circle[radius=4cm];
\foreach \X [count=\Y starting from 0] in {20,1,21,0,8,15,6,16,5,17,4,18,3,19,2}
{\path (0,0) -- (\Y*24:4) node[fill,circle,inner sep=1.8pt]{} 
node[pos=1.1] {$\X$};}
\end{tikzpicture}
\end{document}

enter image description here

3

A PSTricks solution only for either fun or comparison purpose.

enter image description here

\documentclass[pstricks]{standalone}
\usepackage{pst-plot}
\degrees[15]
\begin{document}
\begin{pspicture}(-3,-3)(3,3)
    \curvepnodes[plotpoints=16]{0}{15 AnytoRad}{2*cos(t)|2*sin(t)}{A}
    \pscircle{2}
    \foreach \a [count=\i from 0] in {20,1,21,0,8,15,6,16,5,17,4,18,3,19,2}
    {
        \qdisk(A\i){2pt}
        \uput{2mm}[!dt RadtoAny \i\space mul](A\i){$\a$}
    }
\end{pspicture}
\end{document}
Display Name
  • 46,933
2

a bit shorter PSTricks version. Run with xelatex

\documentclass[pstricks]{standalone}
\usepackage{pst-plot}
\begin{document}
\begin{pspicture}(-3,-3)(3,3)
\degrees[15]
\pscircle{2}
\foreach \a [count=\i from 0] in {20,1,21,0,8,15,6,16,5,17,4,18,3,19,2}
    {%
        \qdisk(2;\i){2pt}\uput{2mm}[\i](2;\i){\a}
    }
\end{pspicture}
\end{document}
user187802
  • 16,850