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 Open in Online-Editor
% 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} gefragt 13 Feb '15, 14:45 Philipp123 cgnieder |
Die Klasse Um Umlaute einzugeben muss man die richtige Eingabekodierung wählen. Speichert man seine Datei in UTF8 Kordierung muss man Open in Online-Editor
% Dokumentklasse \documentclass[11pt,preview,border=3pt,varwidth=true]{standalone} % Schriftart Arial, deutsche Umlaute: \usepackage{selinput} \SelectInputMappings{ adieresis={ä}, germandbls={ß}, Euro={€}, } \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 \centering \textbf{Überschrift}\\ \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} Schöner wird die Tabelle, wenn man alles einheitlich macht. Open in Online-Editor
\documentclass[captions=tableabove]{scrartcl} \usepackage{selinput,booktabs,siunitx} \SelectInputMappings{ adieresis={ä}, germandbls={ß}, Euro={€}, } \renewcommand*\familydefault{\sfdefault} \begin{document} \begin{table} \centering \caption{Überschrift} \begin{tabular}{@{}rc*{6}{S}@{}} \toprule & Name & {AeT\_Ax} & {AeT\_Ay} & {AeT\_Az} & {Ind\_Ax} & {Ind\_Ay} & {Ind\_Az} \\ \midrule & Label & {1} & {2} & {3} & {4} & {5} & {6} \\ cyc\_x & 1 & 40,50 & 0,00 & 0,00 & 41,00 & 0,00 & 0,00\\ cyc\_x & 2 & -40,50 & 0,00 & 0,00 & -41,00 & 0,00 & 0,00\\ cyc\_y & 3 & 0,00 & 66,90 & 0,00 & 0,00 & 42,00 & 0,00\\ cyc\_y & 4 & 0,00 & -66,90 & 0,00 & 0,00 & -42,00 & 0,00\\ cyc\_z & 5 & 0,00 & 0,00 & 70,49 & 0,00 & 0,00 & 55,19\\ cyc\_z & 6 & 0,00 & 0,00 & -90,11 & 0,00 & 0,00 & -74,81\\ cyc\_com & 7 & 28,35 & 46,83 & 49,34 & 28,70 & 29,40 & 38,63\\ cyc\_com & 8 & 28,35 & 46,83 & -63,08 & 28,70 & 29,40 & -52,37\\ cyc\_com & 9 & 28,35 & -46,83 & 49,34 & 28,70 & -29,40 & 38,63\\ \bottomrule \end{tabular} \end{table} \end{document} beantwortet 13 Feb '15, 15:57 Henri |