当前位置: 代码迷 >> 综合 >> Latex error: Extra alignment tab has been changed to \cr.`
  详细解决方案

Latex error: Extra alignment tab has been changed to \cr.`

热度:71   发布时间:2023-11-14 01:21:39.0

在latex中编辑表格时遇到如下错误:

 Extra alignment tab has been changed to \cr.`

回头看看自己的表格,错误原因是插入了额外的列,或者是因为列数与声明的不一致

\begin{table*}[h]\begin{tabular}{ccc}0 & 1 & 2 \\ 0 & 1 & 2 \\\hline\end{tabular}
\end{table*}

自己好好核对一下,是不是 tabular 后面的列数定义少了一列,又或者里面的内容多写了一个&

粗心鬼!!!

  相关解决方案