我怎样才能使超级表格标题看起来像正常标题?

我怎样才能使超级表格标题看起来像正常标题?

在定义自己的标题格式的文档类中使用supertabular并不理想:

在此处输入图片描述

\documentclass{IEEEtran}
\usepackage{supertabular}
\begin{document}
    \begin{table}
        \caption{This is what I want.}
    \end{table}

    \tablecaption{This is what I get.}
    \begin{supertabular}{l}
    \end{supertabular}
\end{document}

有没有办法supertabular使用与文档其余部分相同的标题格式?我IEEEtran在这里展示了一个例子,但我实际上对使用它很感兴趣ieeecolor——所以最受欢迎的是一个通用的解决方案。

答案1

在此处输入图片描述

\documentclass{IEEEtran}
\usepackage{supertabular,capt-of}
\begin{document}
    \begin{table}
        \caption{This is what I want.}
    \end{table}


\begin{supertabular}{l}
\noalign{\captionof{table}{This is what I get.}}
\end{supertabular}
\end{document}

相关内容