ich benutze aktuell diesen Code zum zeichnen eines Plots:
\begin{figure}[h!]
\centering
\begin{tikzpicture}
\begin{axis}[
axis lines=center,
width=10cm, height=5cm,
domain=0:0.04,
ymin=-0.04, ymax=0.04, xmin=0, xmax=0.04,
ylabel={Abweichung $\Delta\ \alpha_i$}, xlabel={$\delta_0\ / \tau_p$},
label style={% erst nach Option axis lines verwenden
at={(ticklabel cs:0.5)},anchor=near ticklabel,sloped},
grid=both,% Haupt- und Nebenlinien
major grid style={gray!50},
]
\addplot+[name path=D, mark=none, line width = 1, color={tumblau}] {(4301*x^4 -422.5*x^3 -16.4*x^2 +2.358*x -0.03006)};
%\addplot+[name path=D, mark=none, line width = 1, color={tumblau}] {((0.6119*x^4 + 0.3849*x^3 -1.148*x^2 + 0.242*x -0.003299)/(x^2 + 2.249*x + 0.107))};
\end{axis}
\end{tikzpicture}
caption[Abweichung des Polbedeckungsfaktors $\Delta\ \alpha_i$]{Abweichung des Polbedeckungsfaktors $\Delta\ \alpha_i$\label{fig:DeltaPolbedeckung}}
\end{figure}
Geht es, dass ich diese an den unteren Rand der Grafik setze, also auf Höhe y=-0.04 setze? Das würde mir besser gefallen.
Außerdem skaliert es die Achsen ja mit 10^-2. Kann ich das ändern, also dass die Achse mit -0,04 -0,02 usw beschriftet wird?
Vielen Dank und Liebe Grüße,
Philipp


