I hope someone can help me with my problem. I have created a matrix using Tikz as I have to be able to cross out columns and rows, however, I cannot get rid of a double horizontal line LaTeX inserts in between the second and third row (but NOT in the first column) and I cannot see where it comes from. Except from that double line, the matrix is exactly the way I want it to be.
This is my code at the moment for the matrix:
\documentclass{article}
\usepackage[english]{babel}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\centering
\begin{tikzpicture}
\matrix (magic) [%
matrix of nodes,
nodes=draw,
text width=6mm,
text centered,
column 1/.style={
nodes={
text width=20mm,
minimum width=20mm,
fill=white
}
},
] {%
& (dd) & (cd) & (dc) & (cc) \\
cooperate & 0 & 4 & 0 & 4 \\
defect & 1 & 6 & 1 & 6\\
};
\draw[thin,red] (magic-2-1.west) -- (magic-2-5.east);
\end{tikzpicture}
\end{document}

