5

I have a tabular environment nested within a table environment which I'd like to place horizontally centered. What's the best way to achieve this?

If the right thing to do is use the \centering command, should \centering enclose the table or just the tablular environment?

1 Answers1

8

I think you should use \centering within the table environment for best results.

\begin{table}
\centering
\begin{tabular}
\end{tabular}
\end{table}