PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Zahlen genau am Punkt ausrichten in Tabellen



FelixRich
20-12-2008, 15:06
hallo liebe user,

würde gerne alle Zahlen unter dem Punkt haben, aber irgenwie klappt es nicht so..
hoffe, dass von euch jemand den entscheidenen tipp hat.
danke

meine Tabelle:
\begin{tabularx}{\linewidth}{@{}XXXXXX@{}}

\toprule
\footnotesize \textbf {Gebäude}
& \footnotesize \textbf {Strom}
&\footnotesize \textbf{Heizung}
&\footnotesize \textbf{Warm"-wasser}
&\footnotesize \textbf{Kälte}
&\footnotesize \textbf{Gesamt}
\\
\midrule
\footnotesize AH 1
& \footnotesize 51.000
&\footnotesize 32.452
& \footnotesize 26.659
& \footnotesize 5.331
& \footnotesize 115.442
\\
\footnotesize AH 2
&\footnotesize 51.000
& \footnotesize 33.315
&\footnotesize 26.659
& \footnotesize 5.057
& \footnotesize 116.031
\\
\footnotesize AH 3
& \footnotesize 39.000
& \footnotesize 24.650
& \footnotesize 18.904
& \footnotesize 3.918
& \footnotesize 86.472
\\
\footnotesize DH 1
& \footnotesize 6.000
& \footnotesize 15.344
&\footnotesize 8.753
& \footnotesize 1.910
& \footnotesize 32.007
\\
\footnotesize DH 2,3
& \footnotesize 12.000
& \footnotesize 10.945
& \footnotesize 4.984
& \footnotesize 1.427
& \footnotesize 29.356
\\
\footnotesize EFH 1 bis 6
& \footnotesize 6.000
& \footnotesize 12.837
& \footnotesize 5.379
& \footnotesize 1.848
& \footnotesize 26.064
\\
\footnotesize MFH 1
& \footnotesize 30.000
&\footnotesize 34.607
& \footnotesize 16.385
& \footnotesize 3.331
& \footnotesize 84.323
\\
\footnotesize MFH 2
& \footnotesize 39.000
& \footnotesize 16.702
& \footnotesize 16.706
& \footnotesize 3.420
& \footnotesize 75.828
\\
\footnotesize MFH 3
& \footnotesize 39.000
& \footnotesize 18.829
& \footnotesize 17.778
& \footnotesize 3.799
& \footnotesize 79.406
\\
\footnotesize BG 71
& \footnotesize 55.000
& \footnotesize 79.091
& \footnotesize 34.742
& \footnotesize 7.451
& \footnotesize 176.284
\\
\footnotesize BG 65
&\footnotesize 25.000
& \footnotesize 27.030
& \footnotesize 10.969
&\footnotesize 7.245
& \footnotesize 70.244
\\
\midrule
\ \footnotesize \textbf{Gesamt}
& \footnotesize \textbf{395.000}
& \footnotesize \textbf{380.932}
& \footnotesize \textbf{219.797}
& \footnotesize \textbf{55.404}
& \footnotesize \textbf{1.051.133}
\\
\bottomrule
\end{tabularx}

\end{table}

René Geppert
20-12-2008, 15:26
nimm beim nächsten mal bitte die codeumgebung (#-symbol) im eingabefenster
und erstelle 1. ein richtiges minimalbeispiel, 2. eins, das man auch kompilieren kann

ich habs mal so gemacht
um fette zahlen am punkt auszurichten, musst du dich eines tricks bedienen, wodurch der punkt aber nicht mehr fett ist, sofern du darüber hinwegsehen kannst


\documentclass{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage{lmodern}
\usepackage{dcolumn, booktabs}

\def\MB#1{\multicolumn{1}{c}{#1}}

\begin{document}
{\footnotesize
\begin{tabular}{@{}>{\slshape}l*{5}{D{.}{.}{-1}}@{}}
\toprule
\textnormal{\textbf{Gebäude}}
& \MB{\textbf {Strom}}
& \MB{\textbf{Heizung}}
& \MB{\textbf{Warmwasser}}
& \MB{\textbf{Kälte}}
& \MB{\textbf{Gesamt}}
\\
\midrule
AH 1
& 51.000
& 32.452
& 26.659
& 5.331
& 115.442
\\
AH 2
& 51.000
& 33.315
& 26.659
& 5.057
& 116.031
\\
AH 3
& 39.000
& 24.650
& 18.904
& 3.918
& 86.472
\\
DH 1
& 6.000
& 15.344
& 8.753
& 1.910
& 32.007
\\
DH 2,3
& 12.000
& 10.945
& 4.984
& 1.427
& 29.356
\\
EFH 1 bis 6
& 6.000
& 12.837
& 5.379
& 1.848
& 26.064
\\
MFH 1
& 30.000
& 34.607
& 16.385
& 3.331
& 84.323
\\
MFH 2
& 39.000
& 16.702
& 16.706
& 3.420
& 75.828
\\
MFH 3
& 39.000
& 18.829
& 17.778
& 3.799
& 79.406
\\
BG 71
& 55.000
& 79.091
& 34.742
& 7.451
& 176.284
\\
BG 65
& 25.000
& 27.030
& 10.969
& 7.245
& 70.244
\\
\midrule
\textnormal{\textbf{Gebäude}}
& \textbf{395}.\textbf{000}
& \textbf{380}.\textbf{932}
& \textbf{219}.\textbf{797}
& \textbf{55}.\textbf{404}
& \textbf{1.051}.\textbf{133}
\\
\bottomrule
\end{tabular}
}
\end{document}

achja...der entscheidende tipp ist natürlich das dcolumn-paket
http://www.ctan.org/tex-archive/help/Catalogue/entries/dcolumn.html

FelixRich
20-12-2008, 15:34
super, genau so soll es aussehen..
vielen dank