`\documentclass{book}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}[domain=0:25,every pin edge/.style={->},pin distance=.3cm]
\begin{axis}[xmax=25,ymax=200, %
width=\textwidth, %
no markers, %
enlarge x limits=false, % se non ho limiti espliciti
enlarge y limits=false, %
]
\addplot {-2*x^2 + (x^3)/10};
\addplot {(x^3)/30};
\addplot {(x^2 + x^3)/10};
\addplot [domain=0:22] {-2*x^2 + (x^3)/10} node [pin=180:{A}] {};
\addplot [domain=22:25] {-2*x^2 + (x^3)/10};
\addplot [domain=0:16] {(x^3)/30} node [pin=180:{B}] {};
\addplot [domain=16:25] {(x^3)/30};
\addplot [domain=0:11] {(x^2 + x^3)/10} node [pin=180:{C}] {};
\addplot [domain=11:25] {(x^2 + x^3)/10};
\end{axis}
\end{tikzpicture}
\end{document}`
sono riuscito a mettere un nodo solo in fondo a un plot…
quindi ho dovuto spezzare la linea in 2 in modo da piazzare il nodo desiderato.
soluzione sub-ottimale, ma utilizzabile… niente di meglio per ora!