I'm making a report and I've been asked to do something which I have no idea is even possible or not. I have this table:
\begin{table}
\begin{center}
\caption{Cryostat-In Pin Outs and Resistances}
\label{cryoin}
\begin{tabular}{ccc}
\hline
\aline
~ Pin & Device & Resistance \\
\hline
\hline
A & Thermometer & NA\\
B & Thermometer & NA\\
C & Detector & 24.3$\Omega$\\
D & Detector & 25.3$\Omega$\\
E & Detector & 24.4$\Omega$\\
F & Detector & 25.3$\Omega$\\
G & Resistor & 25.6$\Omega$\\
H & Resistor & 25.6$\Omega$\\
J & Resistor & 25.6$\Omega$\\
K & Resistor & 25.6$\Omega$\\
\hline
\end{tabular}
\end{center}
\end{table}
However, I am attempting to show which pins are connected together by a pair of wires, via putting a "[" symbol or something similar between two rows (e.g. between C and D) to the left of the table/letters themselves, such that the ends of the symbol are pointing to both the letters (and the symbol isn't simply suspended between them).
In case my description is unclear, I basically wanted to do this (sorry for the blur):


booktabspackage, with the new rule commands it offers you could get that table to look a lot better. Since booktabs also allows you to draw rules that only span some of the columns, you could add an extra empty column to the start of your table and put the braces in there - either with\rowspancells or with zero-sized boxes as explained below. – Jul 04 '13 at 14:34