It won't let me combine to make a column of type 'mc' - is there an easy way to make the text centered in the column cell?
Here is an example: the commented line can replace the other 'tabular' line to flip-flop the vert/horiz centering.
Code: Select all
\documentclass[10pt]{article}
\usepackage{graphicx}
\usepackage{array}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{c|c|c|c|c}
%\begin{tabular}{m{1in}|m{1in}|m{1in}|m{1in}|m{1in}}
Position & ICP Mean Distance & Confidence & Consistency & Image\\ \hline
Correct & 0.057 & 0.579 & 0.589 & \fbox{\rule{0pt}{2in} \rule{0.3\linewidth}{0pt}} \\ \hline
Incorrect & 0.094 & 0.252 & 0.077 & \fbox{\rule{0pt}{2in} \rule{0.3\linewidth}{0pt}}\\ \hline
\end{tabular}
\caption{Test.}
\label{tbl:2carsValues}
\end{table}
\end{document}
Dave