In the following the first two columns are different in nature from the last two and I wanted to emphasize this by having a break in the horizontal line. I drew lines across columns 1 and 2 and then across 3 and 4 but they connect up. How can I get some space between them so that there are two distinct horizontal line segments? If possible I would like to stick with using tabu.
\documentclass{article}
\usepackage{tabu}
\begin{document}
\begin{center}
\begin{tabu}{XXXX}
1 & 2 & a & b\\
\tabucline{1-2 3-4}
1 & 2 & a & b\\
\end{tabu}
\end{center}
\end{document}
Output (ok except I would like some space in the horizontal line between column 2 and 3):


\tabuclinecommand before I made the example minimal but it seems that\arrayrulecolor{red}placed before thecmidruleline does work so I am ok after all. – user1189687 Jul 22 '12 at 22:26