参考:

How to center the table in Latex

Latex: 使 tabular 居中

解决方法1:

{
\centering
\begin{tabular}
...
\end{tabular}
}

解决方法2:

\begin{center}
\begin{tabular}
...
\end{tabular}
\end{center}
05-08 14:49