Pie charts are popular for showing proportions. A pie chart’s main characteristic is that all items usually sum up to 100 percent.
We will use the pgf-pie package. The cloud option produces a set of discs whose sizes are according to the given values. This time, we put the text inside, scale it, and use a larger radius.
Full explanation in Chapter 9, Creating Graphics: Drawing a pie chart
Edit and compile if you like:% Cloud chart % Author: Stefan Kottwitz % https://www.packtpub.com/hardware-and-creative/latex-cookbook \documentclass[border = 10pt]{standalone} \usepackage{pgf-pie} \begin{document} \begin{tikzpicture} \pie [cloud, text=inside, scale font, radius=6] { 62/\TeX\ Live and Mac\TeX, 32/MiK\TeX\ and Pro\TeX t, 6/Other \TeX } \end{tikzpicture} \end{document}
Open in Overleaf: cloud-chart.tex