légende Légende d'un graphique
Je suis en train de peaufiner un graphique :
\begingroup
\centering
\begin{tikzpicture}
\begin{axis}[
title={Taille des particules de F127 pour $c_{m} = 20\, g.L^{-1}$ pour différents mélanges eau:THF},
xlabel={taille (nm)},
xmode=log,
ylabel={intensité (u.a.)},
ymax=50,
mark size=0.5pt,
width=1\textwidth,
% log ticks with fixed point
]
\addplot [Plum,thick,smooth,x=X, y=Intensity, yshift=0cm] table [col sep=tab] {DLS_pluroniqueF127_conc20_eau100_THF0_20190225.txt};
\addplot [RoyalBlue,thick,smooth,x=X, y=Intensity, yshift=0cm] table [col sep=tab] {DLS_pluroniqueF127_conc20_eau80_THF20_20190225.txt};
\addplot [LimeGreen,thick,smooth,x=X, y=Intensity, yshift=0cm] table [col sep=tab] {DLS_pluroniqueF127_conc20_eau60_THF40_20190225.txt};
\addplot [Goldenrod,thick,smooth,x=X, y=Intensity, yshift=0cm] table [col sep=tab] {DLS_pluroniqueF127_conc20_eau40_THF60_20190225.txt};
% \addplot [Orange,thick,smooth,x=X, y=Intensity, yshift=0cm] table [col sep=tab] {DLS_pluroniqueF127_conc20_eau20_THF80_20190225.txt};
\addplot [Red,thick,smooth,x=X, y=Intensity, yshift=0cm] table [col sep=tab] {DLS_pluroniqueF127_conc20_eau100_THF0_20190225.txt};
% addplot [red,thick,smooth] table {test.txt};
\end{axis}
\end{tikzpicture}
\endgroup
Comment ajouter la légende (et non dans le graphique) sous le graphique de manière élégante ?