“额外的对齐标签已更改为 \cr。”:“cta-author”类和 cline 之间有问题?

“额外的对齐标签已更改为 \cr。”:“cta-author”类和 cline 之间有问题?

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您可以指定每列的分隔线。~ 代表无线,-代表单行。另请参阅文档

在此处输入图片描述

答案2

如果您使用booktabs包,则可以使用\cmidrule而不是\cline

\documentclass{cta-author}
\usepackage{booktabs}

\begin{document}
  \begin{table*}[h]
    \begin{tabular}{ccc}
      What & the & * ? \\\cmidrule{2-3}
      0 & 1 & 2
    \end{tabular}
  \end{table*}
\end{document}

在此处输入图片描述

相关内容