Label neben Funktion wird nicht dargestellt
Versuche ein Label recht neben allen Fkt. zu stellen. Es wird mir rein gar nichts angezeigt.
\documentclass{scrartcl}
\usepackage{amsmath}
\usepackage[normalem]{ulem}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
%title=xxx,
xmin=0,
xmax=3,
ymin=0,
ymax=2,
legend pos=outer north east,
domain=0:3, samples=100]
\addplot[no markers, blue] { 1-x^4 } node[right,pos=0.5]{TEST};
\addplot[no markers, blue] { 1.5-x^4 } node[right,pos=0.5]{TEST};
\addplot[no markers, red] { 2-x^4 } node[right,pos=0.5]{TEST};
%\addplot[no markers, Red] { 1-0.5*x^4 };
%\addplot[no markers, Black] { 1-0.05*x^4 };
%\addplot[no markers, Green] { 1-0.01*x^4 };
\end{axis}
\end{tikzpicture}
\end{document}
Wieso?