von phi » So 19. Jun 2011, 14:57
Das ist eine mathematische Formel, die muss von Dollarzeichen umschlossen werden, also z.B.
Sollte es nicht eher 10 statt e heißen?
Besser wäre es, für Zahlen das siunitx-Paket zu benutzen:
\documentclass[ngerman]{article}
\usepackage{babel}
\usepackage{siunitx}
\sisetup{locale=DE}
\begin{document}
\begin{tabular}{*{5}{S[table-format=3.0]}S[table-format=2.2]S[table-format=1.3e-2]}
{Anzahl a} & {Anzahl b} & {insgesamt c} & {Parameter} & {Pearson} & {Spearman} & {rmse} \\
1 & {\numrange{1}{20}} & 20 & 64 & 100 & 99,81 & 1,347e-15
\end{tabular}
\end{document}
Das ist eine mathematische Formel, die muss von Dollarzeichen umschlossen werden, also z.B.[code]$1{,}347\cdot e^{-15}$[/code]Sollte es nicht eher 10 statt e heißen?
Besser wäre es, für Zahlen das siunitx-Paket zu benutzen:[code]\documentclass[ngerman]{article}
\usepackage{babel}
\usepackage{siunitx}
\sisetup{locale=DE}
\begin{document}
\begin{tabular}{*{5}{S[table-format=3.0]}S[table-format=2.2]S[table-format=1.3e-2]}
{Anzahl a} & {Anzahl b} & {insgesamt c} & {Parameter} & {Pearson} & {Spearman} & {rmse} \\
1 & {\numrange{1}{20}} & 20 & 64 & 100 & 99,81 & 1,347e-15
\end{tabular}
\end{document}[/code]