booktab Tabelle / normale Tabelle- Unterschiedliche Darstellung von Punkt und Komma
Hallo,
Ich habe 2 Tabellen erstellt eine Tabelle habe ich normal formatiert und eine Tabelle habe ich mit booktabs erstellt. Leider gibt es zwischen den beiden Formatierungen einen wesentlichen Unterschied. Einmal wird mir meine Zahl als Komma dargestellt 1,0 und einmal bei booktabs mit 1.0 Punkt dargestellt. Warum? :/ Danke
\documentclass[captions=tableabove]{scrartcl}
\usepackage{selinput,booktabs,siunitx}
\renewcommand*\familydefault{\sfdefault}
\begin{document}
\begin{table}
\centering
\caption{Header}
\begin{tabular}{@{}rc*{6}{S}@{}}
\toprule
dfsgsd & 2 & -40,50 & 0,00 & 0,00 & -41,00 & 0,00 & 0,00\\
\midrule
& fgf & {1} & {2} & {3} & {4} & {5} & {6} \\
dfg & 1 & 40,50 & 0,00 & 0,00 & 41,00 & 0,00 & 0,00\\
dfsgsd & 2 & -40,50 & 0,00 & 0,00 & -41,00 & 0,00 & 0,00\\
\bottomrule
\end{tabular}
\end{table}
\begin{tabular}{|c|c|}\hline
45,6 & 45,6 \\ \hline
45,6 & 45,6 \\ \hline
45,6 & 45,6 \\ \hline
45,6 & 45,6 \\ \hline
\end{tabular}
\end{document}