I was wondering how I could draw an arc in Tikz that has small gaps in it in a simple way, like this:
Here is working example:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\draw (6,2.5) arc (0:180:4cm and 1cm);
\end{tikzpicture}
\end{figure}
\end{document}
The gaps need not be of different lengths.
Much appreciated,
Alex




\draw[loosely dashed]or some suitably-defined custom dash pattern work? – Paul Gessler Mar 23 '15 at 11:40