如何删除表格顶部和底部的多余线条

如何删除表格顶部和底部的多余线条

我正在使用iet模板,但是在使用模板时我无法根据表格内容调整表格宽度。宽度是双列空间的整个长度。

\documentclass{cta-author}
\newtheorem{theorem}{Theorem}{}
\newtheorem{corollary}{Corollary}{}
\newtheorem{remark}{Remark}{}
\usepackage{float}
\begin{document}
\begin{table}[t]
{\begin{tabular*}{10pc}{@{\extracolsep{\fill}}ll}\toprule
Efficiency & (\%)     \\\midrule
Fig.       & 92  \\
Fig.      & 99   \\
Fig.     & 100 \\
 \botrule
\end{tabular*}}{}
\end{table}
\end{document}

我得到了这样的输出

在此处输入图片描述

但我需要这样的输出

在此处输入图片描述

该怎么办?

相关内容