Versuche ein Label recht neben allen Fkt. zu stellen. Es wird mir rein gar nichts angezeigt. Öffne in Overleaf
\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? |
Öffne in Overleaf
\documentclass{article} \usepackage{pgfplots} \pgfplotsset{compat=newest} \begin{document} \begin{tikzpicture} \begin{axis}[% 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.01]{TEST}; \addplot[no markers, blue] { 1.5-x^4 } node[right,pos=0.01]{TEST}; \addplot[no markers, red] { 2-x^4 } node[right,pos=0.01]{TEST}; \end{axis} \end{tikzpicture} \end{document} Alternativ kann man Öffne in Overleaf
\documentclass{article} \usepackage{pgfplots} \pgfplotsset{compat=newest} \begin{document} \begin{tikzpicture} \begin{axis}[% xmin=0, xmax=3, ymin=0, ymax=2, legend pos=outer north east, domain=0:3, restrict y to domain=-0.2:2, 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}; \end{axis} \end{tikzpicture} \end{document} beantwortet 24 Apr '18, 23:32 Henri |
Mach mal
\begin{axis}[clip=false,...]
und bei den Nodespos=0.1
. Dann siehst du warum.Das habe ich mir gedacht. Welche Position muss ich denn nehmen? /EDIT, ah danke. Hat ja keiner gesagt, dass nur ganze Zahlen funktionieren ;)