cta-author 类和 cline 之间似乎存在问题。这是我的 MWE 返回的“额外的对齐标签已更改为 \cr。”:
\documentclass{cta-author}
\begin{document}
\begin{table*}[h]
\begin{tabular}{ccc}
What & the & * ? \\
\cline{2-3}
0 & 1 & 2
\end{tabular}
\end{table*}
\end{document}
cta-author.cls 可以在当前版本的 IET 期刊模板中找到 ->http://digital-library.theiet.org/files/IET_ResearchJournals_latex.zip
知道如何避免这种情况吗?
答案1
该软件包的另一个答案hhline
:
\documentclass{cta-author}
\usepackage{hhline}
\begin{document}
\begin{table*}[h]
\begin{tabular}{ccc}
What & the & * ? \\\hhline{~--}
0 & 1 & 2
\end{tabular}
\end{table*}
\end{document}
在的参数中,\hhline
您可以指定每列的分隔线。~
代表无线,-
代表单行。另请参阅文档。