我有一张桌子,希望在空白处保留。我还希望将EPS和PPS两者都添加到单元格的中间上方。我不确定为什么添加字幕也不起作用。这是代码:
\begin{tabular}{ |p{3cm}||p{3cm}|p{3cm}|p{3cm}|p{3cm}| }
\multicolumn{5}{c}{} \\
\hline
&EPS:Pre &EPS:Post &PPS:Pre & PPS:Post \\
\hline
Species tested:&13 &15& 43& 43\\
Compounds tested:& 745 & 745& 310& 361 \\
Unique tests:& 193& 193& 406& 407\\
Total experiments:&17,811 &17,929& 107,470& 130,926\\
\hline
\end{tabular}
\label{tab}
谢谢。
答案 0 :(得分:2)
有几个问题。
您的表格太大,具有边距和列间距。我做了一个宏来微调列宽。
要重新定义列(例如,使标题居中),可以使用\ multicolumn {1} {c} {header}
\ label分配一个在编号环境中使用的数字。它与table
环境相关联,而不与tabular
相关联。标签出现在caption
中。此外,表格在表格环境中居中。
\documentclass{article}
\begin{document}
\newcommand{\colwidth}{0.17\textwidth}
\newcommand{\centercolumn}[1]{\multicolumn{1}{c|}{#1}}
\begin{table}
\centering
\begin{tabular}{ |p{3cm}||p{\colwidth}|p{\colwidth}|p{\colwidth}|p{\colwidth}| }
% \multicolumn{5}{c}{} \\ useless, I think
\hline
&\centercolumn{EPS:Pre} &\centercolumn{EPS:Post} &\centercolumn{PPS:Pre} & \centercolumn{PPS:Post} \\
\hline
Species tested:&13 &15& 43& 43\\
Compounds tested:& 745 & 745& 310& 361 \\
Unique tests:& 193& 193& 406& 407\\
Total experiments:&17,811 &17,929& 107,470& 130,926\\
\hline
\end{tabular}
\caption{My table}
\label{tab:1}
\end{table}
\end{document}