ich möchte gern, dass das folgende KOS
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xmin=-10,xmax=10,ymin=-10,ymax=10,zmin=-10,zmax=10,ylabel={y},zlabel={z},xlabel={x},axis lines=center]
\end{axis}
\end{tikzpicture}
\end{document}\documentclass[tikz]{standalone}
\begin{document}
\pgfmathsetmacro{\xl}{.5*sqrt(2)}
\begin{tikzpicture}[x={(-135:\xl cm)},y={(0:1cm)},z={(90:1cm)}]
\draw[->] (-5,0,0)--(5,0,0)node[below]{x};
\draw[->] (0,-5,0)--(0,5,0)node[below]{y};
\draw[->] (0,0,-5)--(0,0,5)node[right]{z};
\end{tikzpicture}
\end{document}Mir ist es einfach zu aufwendig, jedes Mal die KOS "normal" zu zeichnen, wenn ich für meine SuS Aufgaben erstelle, wo etwas gezeichnet wird/ werden soll.
Kann man das irgendwie sinnvoll umsetzen?
PS.: Ich habe es schon mit dem pgf-manual probiert, aber da finde ich mich leider absolut nicht rein :/
