Tables – How to Make Double Cline in Tables

tables

I want to draw a double cline in a table where the first column is multirow
With double \hline I can draw a full double horizontal line but double \cline{i-j} seems to have the same effect with single \cline.
Is there any other special command to do that?

Thank you

Best Answer

AFAIK the \cline does not add vertical space by itself, therefore the two are just printed over each other. The booktabs package, which I can recommend greatly in general for all tables, defines therefore the \morecmidrules macro:

% \cline is now \cmidrule
\cmidrule{1-2}\morecmidrules\cmidrule{1-2}

However, the booktabs manual says that double lines are evil and should not be used at all....