This is probably a really simple question, but I don't know what keywords this question might have so I have trouble with searching it over the net. Anyway below is a code I wrote for a table.
\documentclass[a4paper,10pt]{scrartcl}
\usepackage{siunitx}
\begin{document}
\begin{table}[h]
\centering
\small
\begin{tabular}{|c|c|c|}
\hline
\textbf{Sample} & \multicolumn{2}{c|}{\textbf{Excitation Wavelengths}} \\ \hline
Chl-a & \SI{415}{\nano\meter} & \SI{570}{\nano\meter} \\ \hline
Pheo-a & \SI{415}{\nano\meter} & \SI{620}{\nano\meter} \\ \hline
Zn-Pheo-a & \SI{420}{\nano\meter} & \SI{604}{\nano\meter} \\ \hline
\end{tabular}
\end{table}
\end{document}
Which generates a table that looks like this:
Now what modification should I use to bring the 2nd column cell border to the center?
Thanks!


twocolumnuse\columnwidthinstead of.5\linewidth. – Ignasi May 22 '15 at 13:48