额外的对齐标签已更改为 \cr。IEEE Access Class 会弹出此错误

额外的对齐标签已更改为 \cr。IEEE Access Class 会弹出此错误
\documentclass{ieeeaccess}

\begin{document}
\begin{table}%[H]
    \caption{Algorithms parameters}
    \label{tab:algo_par}
        \resizebox{8.25cm}{!} {%ajusta el tamaño del cuadro
            \begin{tabular}{|c|c|c|}
            \hline
                 \textbf{Algorithm} &\textbf{Parameters}&\textbf{Values}\\\hline
GA  &Number of iterations&200\\
&&Population size&200\\
&&P_m&0.1\\
&&P_c&0.9\\
&&N &11\\\hline
BPSO    &Number of iterations&200\\
&&Swarm size&200\\
&&V_{max}&4\\
&&V_{min}&-4\\
&&W_i&2\\
&&C_1&0.4\\
&&C_2&2\\
&&N &11\\\hline
WDO&    Number of iterations&200\\
&&Population  size&200\\
&&dimMin&-5\\
&&dimMax&5\\
&&V_{min}&-0.3\\
&&V_{max}&0.3\\
&&RT&3\\
&&n&11\\
&&g&0.2\\
&&a &0.4\\\hline
BFO&    Number of iterations&200\\
&&N_e&24\\
&&N_r&5\\
&&N_c&5\\
&&N_p&30\\
&&N_s&2\\
&&C_i&0.01\\
&&P_{ed}&0.1\\
&&\(\theta  \)&0.1\\\hline
HGPDO&Same parameters as &Same values as of \\
&&of GA, PSO and WDO&GA, PSO and WDO \\\hline
            \end{tabular}
            }
\end{table}

\end{document} 

答案1

除了采用Don Hosek 的推荐将所有实例更改&&&,您还需要确保数学模式正确应用于第 2 列中的单元格。将第三列中的数字与其显式或隐式小数位标记对齐似乎也是可取的。消除所有垂直线并使用书签应该鼓励使用其他包装形式,以使表格看起来更加开放。

以下最小工作示例采用IEEEtran文档类,因为我似乎无法访问ieeeaccess文档类(双关语)。

在此处输入图片描述

\documentclass{IEEEtran}
\usepackage{booktabs,siunitx,newtxtext,newtxmath}
\begin{document}
\begin{table}
\caption{Algorithms parameters}
\label{tab:algo_par}
\centering
\begin{tabular}{@{} l >{$}l<{$} S[table-format=3.2] @{}}
\toprule
Algorithm & \textup{Parameters} & {Values} \\
\midrule
GA    &$Number of iterations$&200\\
      &$Population size$&200\\
      &P_m&0.1\\
      &P_c&0.9\\
      &N &11\\ 
\addlinespace
BPSO  &$Number of iterations$&200\\
      &$Swarm size$&200\\
      &V_{\max}&4\\
      &V_{\min}&-4\\
      &W_i&2\\
      &C_1&0.4\\
      &C_2&2\\
      &N &11\\ 
\addlinespace
WDO   &$Number of iterations$&200\\
      &$Population size$&200\\
      &$dimMin$&-5\\
      &$dimMax$&5\\
      &V_{\min}&-0.3\\
      &V_{\max}&0.3\\
      &RT&3\\
      &n&11\\
      &g&0.2\\
      &a &0.4\\ 
\addlinespace
BFO   &$Number of iterations$&200\\
      &N_e&24\\
      &N_r&5\\
      &N_c&5\\
      &N_p&30\\
      &N_s&2\\
      &C_i&0.01\\
      &P_{\mathrm{ed}}&0.1\\
      &\theta &0.1\\ 
\addlinespace
HGPDO & $Same as for GA,$ & {Same as for GA,} \\
      & $PSO and WDO$     & {PSO and WDO} \\
\bottomrule
\end{tabular}
\end{table}

\end{document} 

答案2

&您的大多数行中的 s太多了。&列之间应该有一个 s,因为您有三列,这意味着每行不应超过两个&s。我看了一眼代码,直觉告诉我,以 开头的每一行都&&应该以 开头&

相关内容