您不制作表格,只制作表格(不能有标题)。您必须先制作一个表格,然后制作一个列表:
\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
:“表格环境只保存我们的其他环境,并允许向表格添加标题。实际数据包含在表格环境中,我们使用中心环境将表格放在页面中央。”