Joker
31-12-2007, 00:41
Hallo,
es geht mir um eine Tabelle, die nicht sehr breit ist.
Einige Zellen sollen dunkelgrau ausgefüllt werden.
Um die Tab. in Seitenbreite zu haben, verwende ich
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill} }|c|l|c|c|c|c|c|c|}
Leider sind die mit \cellcolor gefärbten Zellen dann nicht komplett gefärbt.
Woran könnte das liegen?
Danke schonmal und guten Rutsch!
\documentclass{scrreprt}
\usepackage{colortbl}
\definecolor{TableHeadGray}{gray}{.4}
\usepackage{stfloats}\fnbelowfloat
\begin{document}
\begin{table}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill} }|c|l|c|c|c|c|c|c|}
\hline
\textsc{} & \textsc{Kriterium} & \textsc{1} & \textsc{2} & \textsc{3} & \textsc{4} & \textsc{Gewicht} & \textsc{Faktor} \\
\hline
\hline
\textsc{1} & {Kriterium1} & \cellcolor{TableHeadGray} & 1 & 1 & 1 & 3 & 0,25 \\
\textsc{2} & {Kriterium2} & 1 & \cellcolor{TableHeadGray} & 1 & 1 & 3 & 0,25 \\
\textsc{3} & {Kriterium3} & 1 & 1 & \cellcolor{TableHeadGray} & 1 & 3 & 0,25 \\
\textsc{4} & {Kriterium4} & 1 & 1 & 1 & \cellcolor{TableHeadGray} & 3 & 0,25 \\
{\bf } & {\bf } & & & & & & \\
\hline
\hline
{\bf } & \textsc{Summen} & & & & & 12 & 1,00 \\
\hline
\end{tabular*}
\caption{Whatever}
\end{table}
\end{document}
es geht mir um eine Tabelle, die nicht sehr breit ist.
Einige Zellen sollen dunkelgrau ausgefüllt werden.
Um die Tab. in Seitenbreite zu haben, verwende ich
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill} }|c|l|c|c|c|c|c|c|}
Leider sind die mit \cellcolor gefärbten Zellen dann nicht komplett gefärbt.
Woran könnte das liegen?
Danke schonmal und guten Rutsch!
\documentclass{scrreprt}
\usepackage{colortbl}
\definecolor{TableHeadGray}{gray}{.4}
\usepackage{stfloats}\fnbelowfloat
\begin{document}
\begin{table}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill} }|c|l|c|c|c|c|c|c|}
\hline
\textsc{} & \textsc{Kriterium} & \textsc{1} & \textsc{2} & \textsc{3} & \textsc{4} & \textsc{Gewicht} & \textsc{Faktor} \\
\hline
\hline
\textsc{1} & {Kriterium1} & \cellcolor{TableHeadGray} & 1 & 1 & 1 & 3 & 0,25 \\
\textsc{2} & {Kriterium2} & 1 & \cellcolor{TableHeadGray} & 1 & 1 & 3 & 0,25 \\
\textsc{3} & {Kriterium3} & 1 & 1 & \cellcolor{TableHeadGray} & 1 & 3 & 0,25 \\
\textsc{4} & {Kriterium4} & 1 & 1 & 1 & \cellcolor{TableHeadGray} & 3 & 0,25 \\
{\bf } & {\bf } & & & & & & \\
\hline
\hline
{\bf } & \textsc{Summen} & & & & & 12 & 1,00 \\
\hline
\end{tabular*}
\caption{Whatever}
\end{table}
\end{document}