latex中插入表格

时间:2021-11-26 19:29:57
\begin{table}
\centering
\caption{表格题目}
\begin{tabular}{ccc}   %三个c是因为三列,令每列显示在中间显示,也可以是l或r
\toprule
 第一列 &第二列 & 第三列 \\  
\midrule        %画一条横线
  1  & 72  & 110 \\
  2  & 72  & 118 \\
  3  & 76  & 122 \\
  4  & 82  & 130 \\
  5  & 88  & 132 \\
  6  & 96  & 138 \\
  7  & 104 & 140 \\
  8  & 106 & 148 \\
  9  & 112 & 150 \\
  10 & 118 & 152 \\
  11 & 126 & 158 \\
  12 & 130 & 164 \\
  13 & 134 & 168 \\
  14 & 138 & 170 \\
\bottomrule
\end{tabular}
\end{table}