pie plot in latex code example
Example: pie plot in latex
\usepackage{pgf-pie} % Pie chart library
\begin{document} % Document starts here
\begin{tikzpicture}
\pie[
color = {
yellow!90!black,
green!60!black,
blue!60,
red!70,
gray!70,
teal!20},
text = legend % Add a legend
] % Values:
{22.97/LAL,
22.97/BC,
8.11/GSW,
8.11/CB,
6.76/SAS,
31.07/Other}
\end{tikzpicture}