I want to know how can I write some text around a circular disk? My circular disk is something like:
\documentclass[border=5pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\def\NumSpokes{8}
\def\InnerR{2.9}
\def\OuterR{3}
\draw (0,0) circle (\OuterR); \foreach \k in {1,...,\NumSpokes}
{%
\draw (\k*360/\NumSpokes:\InnerR) -- (\k*360/\NumSpokes:\OuterR+0.1) ; }
\foreach \k in {3,6,7}{%
\fill[black] (\k*360/\NumSpokes:\OuterR) circle (0.1);
}
\end{tikzpicture}
\end{document}
\end{document}
I want to know if it is possible to show the distance between the first and the second black circles, with for example "L1", and the distance between the second and the third black circles, with "L2" by a simple "{"s with "L1" and "L2" on them around and out of the main disk?
