我正在尝试使用一系列标题,但是当我尝试运行以下代码时,\multicolumn
系统地出现“缺少插入”错误:\cr
\documentclass{report}
\usepackage{multirow}
\begin{document}
\begin{table} [!h]
\centering
\begin{tabular}{c c c c}
\hline
\multicolumn{4}{c}{Title}} \\
1 & 2 & 3 & 4 \\ \hline
\end{tabular}
\newline
\caption{caption of table} \label{tab:table7_2}
\end{table}
\end{document}
有人可以帮我解决这个问题吗?
答案1
线路
\multicolumn{4}{c}{Title}} \\
应该
\multicolumn{4}{c}{Title} \\ %one } removed