I draw line with \cline in my table starting from the second column, because the first two rows are a merged cell. That works well as long as I do not use coloring of the cells. If I colorize the rows the \cline drawn line kind of bleaches out. I still can see some very faint border on the screen which presumably vanishes entirely if printed.
Does anyone knows a way around that problem?
Here is my minimal working example:
\documentclass{article}
\usepackage{longtable}
\usepackage{array}
\usepackage{rotating}
\usepackage{hhline}
\usepackage{colortbl}
\usepackage{multirow}
\usepackage{titlesec}
\begin{document}
\newcounter{magicrownumbers}
\newcommand\rownumber{\stepcounter{magicrownumbers}\arabic{magicrownumbers}}
\begin{table}
\centering
\begin{tabular}{|r|l|l|l|}
\hline
\rowcolor[gray]{.90}
\multirow{2}{*}{\centering\rownumber}& \multicolumn{3}{c|}{\begin{minipage}{14cm}{\vspace{2mm}The text here\vspace{2mm}}\end{minipage}} \\
\cline{2-4}
\rowcolor[gray]{.90}
& Score: 1 & Remark: XXX & Substitute: KKKKK\\
\hline
% rowcolor[gray]{.90}
\multirow{2}{*}{\centering\rownumber}& \multicolumn{3}{c|}{\begin{minipage}{14cm}{\vspace{2mm}The text here\vspace{2mm}}\end{minipage}} \\
\cline{2-4}
%\rowcolor[gray]{.90}
& Score: 1 & Remark: XXX & Substitute: KKKKK\\
\hline
\end{tabular}
\end{table}
\end{document}

colortblhas a section with title "Less fun with\cline(the previous section having title "More fun with\hhline") – David Carlisle Jan 08 '14 at 09:39