\newcolumntype - Fehler bei Verwendung von diesem Befehl
Die Tabelle habe ich nach euren Tipps umgebaut. Funktioniert tadenlos!
Letzte Frage: "Ich möchte einen von mir vordefinierten Spaltentypen verwenden siehe Code.
Nur bekomme ich viele Fehler wenn ich L,R `L`, `R` hier implementiere `\begin{tabular}{|S|SSSLLLLLRR|}`
Wo liegt meine Schuld? Und `\cline` funktioniert hier bei mir auch nicht (leider) Danke im Voraus für eure Hilfe und ein schönes Wochenende.
\documentclass[margin=10pt]{standalone}
\usepackage{rotating}
\usepackage{booktabs}
\usepackage[copy-decimal-marker]{siunitx}
\usepackage[table]{xcolor}
\newcommand\tabrotate[1]{\rotatebox{90}{#1\hspace{\belowrulesep}}} %Rotierung
%\newcolumntype{L}{>{\begin{varwidth}{1cm}}l<{\end{varwidth}}} %Spalten Definition Linksbündig 2 cm!
%\newcolumntype{R}{>{\begin{varwidth}{1cm}}r<{\end{varwidth}}} %Spalten Definition Rechtsbündig 2 cm!
%\newcolumntype{C}{>{\begin{varwidth}{1cm}}c<{\end{varwidth}}} %Spalten Definition Zentriert 2 cm!
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newpage
\rowcolors{5}{white}{gray!10}
\begin{document}
\begin{tabular}{|S|SSSrrrrrrr|}
\toprule
\rowcolor{red!20}
& 101 & 102 & 103 & 104 & 105 & 106 & 107 & 108 & 109 & 110 \tabularnewline \cline{2-9}
\rowcolor{red!20}
{ Halloo} & {\tabrotate{P}} & {\tabrotate{AX}} & {\tabrotate{AY}} & {\tabrotate{AZ}} & {\tabrotate{AX}} & {\tabrotate{AX}} & {\tabrotate{AX}} & {\tabrotate{AY}} & {\tabrotate{AZ}} & {\tabrotate{YD}} \tabularnewline %\midrule
\midrule
\rowcolor{red!20}
{Wie geht es} & -8,0 & -13,0 & 2,7 & 2,8 & 2,9 & -8,0 & -13,0 & 2,7 & 2,8 & 2,9 \tabularnewline
\rowcolor{red!20}
{Neinnn} & 100,7 & 7000,1 & 14,0 & 798,6 & 1033,7 & 100,7 & 7000,1 & 14,0 & 798,6 & 1033,7 \tabularnewline
\rowcolor{red!20}
{heute ??} & 54,4 & 3506,6 & 5,7 & 397,9 & 515,4 & 54,4 & 3506,6 & 5,7 &397,9 & 515,4\tabularnewline
\midrule
1 & 2,5 & 2,6 & 2,7 & 2,8 & 2,9 & 3 & 3,1 & 3,2 & 3,3 & 3,4 \tabularnewline
2& -8 & 2,6 & 9 & 10 & 11 & 12 & -13 & 14 & 15 & 16 \tabularnewline
3 & 100,7 & 7000,1 & 8 & 798,6 & 1033,7 & 100,7 & 7000,1 & 8 & 798,6 & 1033,7\tabularnewline
4 & 12 & -13 & 14 & 15 & 16 & 2,5 & 2,6 & 2,7 & 2,8 & 2,9\tabularnewline
5 & 100,7 & 7000,1 & 8 & 798,6 & 1033,7 & -8 & 2,6 & 9 & 10 & 11\tabularnewline
\bottomrule
\end{tabular}
\end{document}