I have a table defined as:
\begin{table}
\begin{center}
\setlength{\extrarowheight}{3.0pt}
\begin{tabular}{ | c | p{12.5cm} |}
\hline
\textbf{Item 1} & Long description of item 1 \\
\hline
% ... (etc)
\end{tabular}
\end{center}
\end{table}
I want the text in the first column to be both vertically and horizontally aligned. Given the code above, the text is only horizontally aligned. I have tried fixing this by changing the column alignment/width specifier from 'c' to 'm{2.5cm}', but to no avail.
How do I make the column centered both horizontally and vertically?
m{12.5cm}for the second column specifier. – egreg Jun 07 '11 at 09:01array... – Jun 07 '11 at 09:26\extrarowheight, but I'll add it in my answer. – egreg Jun 07 '11 at 10:05centerenvironment, it's better to use\centeringwithin a float. – barbara beeton Jun 07 '11 at 12:05