I am consistently getting this error which is driving me crazy whenever I put \cline in my code. If I remove \cline, the code compiles with no errors. The error I got is "\extra alignement tab has been changed to \cr 1.260 \cline". I was wondering if somebody can help me with this. Here is my code for the table:
Code: Select all
\begin{table}
\caption{Iron concentrations of MPIO phantoms used to quantify $K_{Fe}$, the calibration constant of LMD and MPIO Iron content.}
\begin{center}
\begin{tabular}{| c | c | c |}
\hline
\multirow{2}{*}{Sample \#} & \multicolumn{2}{|c|}{Iron Concentration ($\mu$g/ml)} \\
\cline{2-6}
& 0.96$\mu$m MPIO & 1.63$\mu$m MPIO \\
\hline
1 & 0 & 0 \\
\hline
2 & 4 & 3.1 \\
\hline
3 & 8 & 6.1 \\
\hline
4 & 12 & 9.2 \\
\hline
5 & 16 & 12.2 \\
\hline
6 & 18 & 15.3 \\
\hline
7 & 20 & 18.3 \\
\hline
8 & 22 & 21.4 \\
\hline
9 & 24 & 24.5 \\
\hline
10 & 26 & 27.5 \\
\hline
11 & 28 & 30.6 \\
\hline
12 & - & 33.6 \\
\hline
13 & - & 36.7 \\
\hline
14 & - & 39.8 \\
\hline
15 & - & 42.8 \\
\hline
\end{tabular}
\end{center}
\label{tb:LMDconc}
\end{table}