latex表格单栏居中
时间: 2023-11-25 18:45:22 浏览: 233
latex表格行高、文本居中
5星 · 资源好评率100%
对于latex表格单栏居中的问题,可以在代码中使用\centering命令来实现。具体操作如下:
\begin{table}
\caption{.}
\label{tab1}
%\renewcommand{\arraystretch}{1.0}
\centering
\scalebox{0.8}{
\begin{tabular}{cccccccccccc}
\toprule[1.5pt]
x & x & x & x & x \\
\midrule[0.5pt]
\multirow{2}{*}{BuzzFeed} \\
\end{tabular}
}
\end{table}
阅读全文