I'm using a tabular* with rubber spacing to fill the complete width of the page. This works fine, except that when I use cline, the line is not complete. It seems that cline does not cover the spacing. I'm using pdflatex. Below you will find a code example. Any ideas on how to fix this?
\usepackage{array} % for defining a new column type
\usepackage{varwidth} %for the varwidth minipage environment
%...
\newcolumntype{M}{>{\begin{varwidth}{6cm}}l<{\end{varwidth}}} %M is for Maximal column
%...
\begin{tabular*}{15.5cm}{@{\extracolsep{\fill}} | M | r | r | r | r |}
\hline
\bf Omschrijving & \bf Hoeveelheid & \bf Prijs & \bf SubTotaal & \bf BTW\\
\hline
Armband 2 & 1 & 256.00 & 256.00 & 19.00\% \\
\hline
\multicolumn{3}{c |}{} & SubTotaal & 256.00\\
\multicolumn{3}{c |}{} & BTW (19.0) & 48.64\\
\multicolumn{3}{c |}{} & \bf Totaal & \bf 304.64\\
\cline{4-5}
\end{tabular*}
tabular*with rubber spacing and\cline– Werner Apr 28 at 14:57