当我想要用该类合并表格中的两个单元IEEEtran
格时,遇到了一个问题。通常情况下,它可以multicolumn
完美地工作,但是,使用这个类,合并单元格中应该出现的文本出现了两次,如下图所示。
我使用的代码是:
\documentclass[journal]{IEEEtran}
\usepackage{mdwtab}
\begin{document}
\begin{table}
\centering
\caption{My caption}
\begin{tabular}{|c|c|c|}
\hline
Cell A & \multicolumn{2}{c|}{Cell B} \\
\hline
1 & 2 & 3 \\
\hline
4 & 5 & 6 \\
\hline
\end{tabular}
\end{table}
\end{document}
我尝试了不同的选项(\usepackage{multirow}
等),但没有作用。
你有任何线索吗?
提前感谢您的回复