如何在Latex表上添加标题

时间:2016-06-14 09:29:52

标签: latex pdflatex

我想在Latex中的下表中添加一个标题。

\begin{center}

\begin{tabular}{ | l | l | l | l | l | l | l | l | l | p{5cm} |}
\hline
GT & MT & PT & ML & FP & FN & ID & FM & Rc & Pr \\ \hline
abc & abc & abc & abc & abc & abc & abc & abc & abc & abc \\ \hline

\hline
\end{tabular}

\end{center}

1 个答案:

答案 0 :(得分:6)

您不制作表格,而只制作表格(不能有标题)。你必须首先制作一个表,然后是一个表格:

\begin{table}[htb]

    \centering % instead of \begin{center}
    \caption{Here you can type in your caption}
    \vspace{10mm} % Adjust the height of the space between caption and tabular

    \begin{tabular}{ | l | l | l | l | l | l | l | l | l | p{5cm} |}
        \hline
        GT & MT & PT & ML & FP & FN & ID & FM & Rc & Pr \\ \hline
        abc & abc & abc & abc & abc & abc & abc & abc & abc & abc \\ \hline
         \hline
    \end{tabular}

\end{table}

Further explanation:“表格环境仅包含我们的其他环境,并允许在表格中添加标题。实际数据包含在表格环境中,我们使用中心环境将表格置于页面中心。 “