Richtige Platzierung einer Überschrift
Hallo,
Wie kann ich es bewerkstelligen, dass die Überschrift nicht seitlich neben der Tabelle platziert wird sondern ober der Tabelle (Gibt es eine andere Funktion für die Beschriftung einer Tabelle? Die beschriftung müsste aber ober der Tabelle sein) bzw. warum bekomm ich eine Fehlermeldung wenn ich beim Text der Überschrift einen Umlaut verwende obwohl ich das usepackage ngerman verwende?
Die falsche Formatierung von mathit und der nicht Verwendung von booktabs (schönere Tabelle) sei einmal dahin gestellt. :)
Ich weiss das sind sicher Standard - Anfänger Fragen... Sorry diesbezüglich. Danke
% Dokumentklasse
\documentclass[11pt,preview,border=3pt]{standalone}
% Schriftart Arial, deutsche Umlaute:
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ngerman}
\usepackage[scaled]{uarial}
\renewcommand*\familydefault{\sfdefault}
% Table-Packages:
\usepackage{multicol}
% Sonstige Packages:
\usepackage{textcomp} % zB fuer Grad Celsius
\begin{document}
\fontsize{4pt}{6pt}\selectfont
\textbf{Ueberschrift}
\begin{tabular}{|*{8}{l|}}
\hline
& \textbf{$\mathit{Name}$} & \textbf{AeT\_Ax} & \textbf{AeT\_Ay} & \textbf{AeT\_Az} & \textbf{Ind\_Ax} & \textbf{Ind\_Ay} & \textbf{Ind\_Az}\\ \hline
& \textbf{$\mathit{Label}$} & 1 & 2 & 3 & 4 & 5 & 6\\ \hline
$\mathit{cyc\_x}$ & \textbf{$\mathit{1}$} & 40,50 & 0,00 & 0,00 & 41,00 & 0,00 & 0,00\\ \hline
$\mathit{cyc\_x}$ & \textbf{$\mathit{2}$} & -40,50 & 0,00 & 0,00 & -41,00 & 0,00 & 0,00\\ \hline
$\mathit{cyc\_y}$ & \textbf{$\mathit{3}$} & 0,00 & 66,90 & 0,00 & 0,00 & 42,00 & 0,00\\ \hline
$\mathit{cyc\_y}$ & \textbf{$\mathit{4}$} & 0,00 & -66,90 & 0,00 & 0,00 & -42,00 & 0,00\\ \hline
$\mathit{cyc\_z}$ & \textbf{$\mathit{5}$} & 0,00 & 0,00 & 70,49 & 0,00 & 0,00 & 55,19\\ \hline
$\mathit{cyc\_z}$ & \textbf{$\mathit{6}$} & 0,00 & 0,00 & -90,11 & 0,00 & 0,00 & -74,81\\ \hline
$\mathit{cyc\_com}$ & \textbf{$\mathit{7}$} & 28,35 & 46,83 & 49,34 & 28,70 & 29,40 & 38,63\\ \hline
$\mathit{cyc\_com}$ & \textbf{$\mathit{8}$} & 28,35 & 46,83 & -63,08 & 28,70 & 29,40 & -52,37\\ \hline
$\mathit{cyc\_com}$ & \textbf{$\mathit{9}$} & 28,35 & -46,83 & 49,34 & 28,70 & -29,40 & 38,63\\ \hline
\end{tabular}
\end{document}