将表格放在乳胶中,并将标题放在单元格上方

时间:2019-02-12 16:25:55

标签: latex centering

我有一张桌子,希望在空白处保留。我还希望将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}

谢谢。

1 个答案:

答案 0 :(得分:2)

有几个问题。

  1. 您的表格太大,具有边距和列间距。我做了一个宏来微调列宽。

  2. 要重新定义列(例如,使标题居中),可以使用\ multicolumn {1} {c} {header}

  3. \ 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}

enter image description here