如何在 IEEE 论文中设置此表

如何在 IEEE 论文中设置此表

在此处输入图片描述

\begin{table}[h]

 \begin{center}

   \caption{ Comparison of Maximum Accuracy of Different Methods on BCI comp III dataset IIIa
}\label{tab:2}

   \begin{tabular}{c c c c c c}
     \hline
     % after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
     $Feature Extraction^a$ & $Classifier^b$ & & Accuracy(\%)  &  &  \\ 
     \hline
      &  & K3  & K6  & L1  & $mean^c$ \\
     AAR & MDA[9] & 66.6 & 38.5 & 49.5 & 51.5 \\
     CAR+CSP & NN[10] & 81.7 & 76.7 & 73.3 & 77.2 \\
     Barlow method & SVM[11] & 63.3 & 45.0 & 60.0 & 56.1 \\
       WPD & ME[12] & 90.4 & 66.0 & 79.6 & 78.7\\
      WPD+CSP & SVM+NN[13] & 83.1 & 84.4 & 85.6 & 84.4 \\
     PLV  & SVM+Quicksort[14] & 86.0 & 82.0 & 77.0 & 81.7 \\
     Sparse PCA+Sparse CSP & SVM[15] & 85.1 & 81.6 & 80.1 & 82.3 \\
     STFT+CSP & SVM[16] & 71.3 & 88.1 & 71.2 & 76.9\\
     \hline
      4 band CSP (our method)& SVM & 93.3 & 77.5 & 85.8 & 85.5\\

     \hline 

   \end{tabular}

 \end{center}
\end{table} 

答案1

您的桌子存在许多严重问题。它太宽\columnwidth只是其中最严重的问题。

  1. 要使表格适合文本块,只需 (a) 将参数设置\tabcolsep0pt并 (b) 从 a 环境切换tabular到 atabular*环境即可。有了该@{\extracolsep{\fill}}指令,tabular*环境将尽可能减少列间空白以使表格适合。

    如果表格更宽,则还必须在两个文本列中的某些单元格中引入换行符。但是,这似乎在这里没有必要。

  2. 表格的布局——请原谅我的直率——非常不美观。我建议您 (a) 加载该booktabs包,(b) 使用它的线条绘制宏而不是\hline,以及 (c) 为标题材料提供更精心设计的结构。例如,要将字符串“Accuracy (\%)”置于四个数据列上方的中心,请将其包含在指令中multicolumn{4}{c}{...}

  3. 您似乎正在尝试创建一些表格内脚注标记。无论您做什么,不要滥用 TeX 的数学模式以这种方式。我建议您 (a) 加载包threeparttable,(b) 使用\tnote指令放置脚注标记,以及 (c) 使用tablenotes环境 after\end{tabular*放置相应的脚注材料。

  4. 在其中一个标题单元格中,将奇怪的内容替换fi

在此处输入图片描述

\documentclass{IEEEtran}
\usepackage{booktabs,ragged2e}

\usepackage[flushleft]{threeparttable}
\renewcommand\TPTtagStyle{\textit}

\begin{document}

\begin{table}[h]
\begin{threeparttable}
\caption{Comparison of Maximum Accuracy of Different 
        Methods on BCI comp III dataset IIIa}
\label{tab:2}
\setlength\tabcolsep{0pt} % make LaTeX figure out intercolumn spacing

\begin{tabular*}{\columnwidth}{@{\extracolsep{\fill}} ll cccc}
\toprule
     Feature Extraction\tnote{a} & Classifier\tnote{b} & 
     \multicolumn{4}{c}{Accuracy (\%)} \\ 
\cmidrule{3-6}
     & & K3 & K6 & L1 & mean\tnote{c} \\
\midrule
     AAR & MDA [9] & 66.6 & 38.5 & 49.5 & 51.5 \\
     CAR+CSP & NN [10] & 81.7 & 76.7 & 73.3 & 77.2 \\
     Barlow method & SVM [11] & 63.3 & 45.0 & 60.0 & 56.1 \\
     WPD & ME [12] & 90.4 & 66.0 & 79.6 & 78.7\\
\addlinespace
     WPD+CSP & SVM+NN [13] & 83.1 & 84.4 & 85.6 & 84.4 \\
     PLV  & SVM+Quicksort [14] & 86.0 & 82.0 & 77.0 & 81.7 \\
     Sparse PCA+Sparse CSP & SVM [15] & 85.1 & 81.6 & 80.1 & 82.3 \\
     STFT+CSP & SVM [16] & 71.3 & 88.1 & 71.2 & 76.9\\
\addlinespace
      4 band CSP (our method)& SVM & 93.3 & 77.5 & 85.8 & 85.5\\
\bottomrule
\end{tabular*}

\smallskip
\scriptsize
\begin{tablenotes}
\RaggedRight
\item[a] AAR: Adaptive Autoregressive; 
         CAR: Common Average Reference; 
         CSP: Common Spatial Pattern;
         WPD: Wavelet Packet Decomposition;
         \dots
\item[b] \dots
\item[c] \dots
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}

相关内容