I am trying to create a picture with pstricks whereby at the circumference of a circle smaller semicircles with different diameters are placed. I have tried several approaches, such as placing
\psarc
manually within the pspicture
environment. The best result so far is the example shown here:Code: Select all
\documentclass[]{article}
\usepackage{graphicx}
\usepackage{pstricks}
\usepackage{pst-all}
\begin{document}
\begin{pspicture}(-2,-0.5)(2,5)
\pstextpath[c](0,0){%
\psarcn[linestyle=none](0,1){0.75}{1}{3}}{
$\circ$$\circ$$\circ$$\circ$$\circ$$\circ$$\circ$$\circ$$\circ$$\bigcirc$$\bigcirc$$\bigcirc$ \large{$\bigcirc$}$\circ$$\bigcirc$$\circ$$\circ$$\circ$}
\pscircle[fillstyle=solid](0,1){0.8}
\end{pspicture}
\end{document}
I would highly appreciate your input. Any hint is welcome.
Kind regards