我正在使用回忆录模板。
我有一张小桌子(附件是 word 版本),我试图让它在页面上居中。但是在我添加[H]
后面后,它就变成左对齐了\begin{table}
。
以下是模板和代码的链接: https://sites.google.com/site/biometricbiometrie/template/monStyle.tex?attredirects=0&d=1
\definecolor{c1}{rgb}{0.30980, 0.50588, 0.73725}
\definecolor{c2}{rgb}{0.82353, 0.87843, 0.92941}
\begin{center}
\setlength{\arrayrulewidth}{1pt}
\setlength{\extrarowheight}{1.2pt}
\color{c1}
\arrayrulecolor{white}
\begin{table}[H]
\caption{Table}
\label{tb33}
\begin{tabular}{|l|l|c|}
\rowcolor{c1}
& \color{c2}F1A & \color{c2}F3A \\
\hline
\rowcolor{c2}
F2A & 0.4693 (14.2\%) & 0.5073 (15.3\%) \\
\hline
\rowcolor{c2}
F1A & & 0.4191 (12.6\%) \\
\hline
\end{tabular}
\end{table}
\end{center}
答案1
当您使用浮动表格时,H 不是用于居中,而是用于表格在页面中的首选位置。要使环境居中,tabular
您必须使用\centering
。
\begin{table}[h]
\centering
\begin{tabular}{...}
[…]
\end{tabular}
\end{table}