I am using subtable environment to put two tables side by side.
However, the column separate line between the first two columns draws out of the table.
Anyone can help with this issue?
Sample code as follows:
\begin{table}[htbp]
\small
\centering
\caption{Experiment Results-I}
\subtable[Indexing Performance]{
\begin{tabular}{c|r|r}
\hline
A & B & D\\
\hline
\hline
a & c & d\\
\hline
\end{tabular}
}
\subtable[Indexing Performance]{
\begin{tabular}{c|r|r}
\hline
A & B & D\\
\hline
\hline
a & c & d\\
\hline
\end{tabular}
}
\end{table}

\documentclassand the appropriate packages that sets up the problem. While solving problems is fun, setting them up is not. Then those trying to help can simply cut and paste your MWE and get started on solving problem. – Peter Grill Oct 8 '12 at 4:51tabularwith\hline \\. Don't end yourtabularwith\\. – Werner Oct 8 '12 at 5:09