I'm having an issue where \cline appears to be drawn under the fill for table colours.
With \hline

With \cline
(to remove the line above the cell I want blank)

The line is still there, only very very thin. This doesn't always display or print. Is there anything simple I can do to fix this?
Here's the source for my example:
\documentclass{article}
\usepackage[table]{xcolor}
%odd/eaven colours for tables
\rowcolors{2}{gray!10}{white}
%to change cells of the title row
\newcommand{\titlecol}{\cellcolor{gray!30}}
\begin{document}
\begin{table}[!ht]
\centering
\begin{tabular}{|l| c c | c c |}
\cline{2-5}
%\hline
\rowcolor{white} %first cell is excluded from the table
\multicolumn{1}{c|}{} & \multicolumn{2}{c|}{\titlecol Title1} & \multicolumn{2}{c|}{\titlecol Title2} \
\hline
A & 0 & 1 & 2 & 3 \
B & 0 & 1 & 2 & 3 \
C & 0 & 1 & 2 & 3 \
D & 0 & 1 & 2 & 3 \
\hline
\end{tabular}
\caption{Caption.}
\label{mytable}
\end{table}
\end{document}


\ \cline{2-5}? – willeM_ Van Onsem Feb 27 '14 at 22:46Misplaced \omit. \@cline #1-#2\@nil ->\omit– jozxyqk Feb 27 '14 at 22:48