Positionierung von Objekten
Hallo Allerseits :)
ich hätte ein dringendes Anliegen :) ich möchte meine Objekte sei es Tabellen Diagramme oder Bilder am sheet platzieren.
ich möchte gerne:
1. den horizontalen und vertikalen Abstand der Objekte unter einander bestimmen
2. bzw. die himmelsrichtung
wie würde das funktionieren
mein beispiel
\documentclass{scrartcl} %Das ist die Dokumentenklasse. Kann was anderes auch sein
\usepackage{pgfplots}
\begin{document} %Hier beginnt es
\begin{minipage}{\linewidth} %minipage?
\pgfplotsset{width=8cm,height=6cm}
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{axis}[xlabel = {$A$}]
\addplot [color=red,solid, mark=*, mark options={solid},smooth] coordinates {(2,6.45)(1,3.4)(3,4.8)(4,4.1)(5,2.4)};
\end{axis}
\end{tikzpicture}
\end{axis}
\end{tikzpicture}
\pgfplotsset{width=10cm,height=6cm}
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{axis}[xlabel = {$B$}]
\addplot [color=green,solid, mark=*, mark options={solid},smooth] coordinates {(1,66.4)(2,43.4)(3,4.3)(4,4.1)(5,9.4)};
\end{axis}
\end{tikzpicture}
\end{axis}
\end{tikzpicture}
\pgfplotsset{width=8cm,height=6cm}
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{axis}[xlabel = {$C$}]
\addplot [color=blue,solid, mark=*, mark options={solid},smooth] coordinates {(1,66.4)(2,43.4)(2,4.8)(4,3.1)(1,9.4)};
\end{axis}
\end{tikzpicture}
\end{axis}
\end{tikzpicture}
\pgfplotsset{width=10cm,height=6cm}
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{axis}[xlabel = {$D$}]
\addplot [color=green,solid, mark=*, mark options={solid}] coordinates {(1,66.4)(2,43.4)(3,4.8)(4,4.1)(5,9.2)};
\end{axis}
\end{tikzpicture}
\end{axis}
\end{tikzpicture}
\pgfplotsset{width=8cm,height=6cm}
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{axis}[xlabel = {$E$}]
\addplot [color=pink,solid, mark=*, mark options={solid}] coordinates {(1,66.4)(2,43.4)(3,4.8)(4,4.1)(5,9.4)};
\end{axis}
\end{tikzpicture}
\end{axis}
\end{tikzpicture}
\pgfplotsset{width=10cm,height=6cm}
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{tikzpicture}[baseline=(current axis.south)]
\begin{axis}[xlabel = {$F$}]
\addplot [color=green,solid, mark=*, mark options={solid}] coordinates {(1,66.4)(2,43.2)(2,4.8)(4,4.1)(4,9.4)};
\end{axis}
\end{tikzpicture}
\end{axis}
\end{tikzpicture}
\end{minipage}
\end{document}