IEEE 模板。表中的 \cline 错误。额外的对齐标签已更改为 \cr

IEEE 模板。表中的 \cline 错误。额外的对齐标签已更改为 \cr

我使用 IEEETemplate 来处理这个表,但是现在我尝试使用 IET 模板来构建它时出现了标题上所示的错误。有人能帮帮我吗?

非常感谢您抽出时间。

\documentclass{cta-author}


\usepackage{graphicx}
\usepackage{multirow}
\usepackage{booktabs}

\begin{document}

\begin{table}[h!]
    \centering
  \renewcommand{\arraystretch}{1.2}
  \begin{tabular}[b]{|p{1cm}|l|c|c|c|c|}
    \hline
    \multirow{2}{0.3cm}{\textbf{j}}& \multicolumn{2}{c|}{\textbf{k}}  & \multicolumn{2}{c|}{\textbf{l}}\\
    \cline{2-5}
    & \textbf{f} & \textbf{g} & \textbf{h} & \textbf{i}  \\ \hline
       a  & b  & c & d & e \\ \hline
    \end{tabular}
    \caption{Example}
\end{table}

\end{document}

答案1

\cmidrule代替\cline

\documentclass{cta-author}


\usepackage{graphicx}
\usepackage{multirow}
\usepackage{booktabs}
\setlength{\aboverulesep}{-0.2pt}
\setlength{\belowrulesep}{-0.2pt}

\begin{document}

\begin{table}[h!]
    \centering
  \renewcommand{\arraystretch}{1.2}
  \begin{tabular}[b]{|p{1cm}|l|c|c|c|c|}
    \hline
    \multirow{2}{0.3cm}{\textbf{j}}& \multicolumn{2}{c|}{\textbf{k}}  & \multicolumn{2}{c|}{\textbf{l}}\\
    \cmidrule{2-5}
    & \textbf{f} & \textbf{g} & \textbf{h} & \textbf{i}  \\ \hline
       a  & b  & c & d & e \\ \hline
    \end{tabular}
    \caption{Example}
\end{table}

\end{document}

在此处输入图片描述

相关内容