包含两列模板中的合并单元格的表格

包含两列模板中的合并单元格的表格

我想在两列模板中创建一个表格,但该表格只能占用 1 列,如下所示。

在此处输入图片描述

我不确定如何处理此代码,有人可以帮忙吗?

\documentclass[journal]{IEEEtran}
\usepackage{tabularray}
\begin{document}
\begin{table}[h]
  \caption{Test Table}
  \label{tab:table_x}
  \centering
  \begin{tblr}{%
      colspec = {QQQ},
      hlines, vlines,
      columns={c}, rows={m},
      row{1}={font=\bfseries},
    }
    Wafer Flow Pattern & Parameters & 
    Percentage of Instances Solved by MIP & 
    Average Gap from Optimal Solution \\
    Percentage of Instances Solved by MIP & Parameters & 
    Swap & Backward & New Sequence \\
    [1,1,1] & $p_i \in [0-300], \forall i \in \{1,2,3\}$ $c_i \in [0-300], \forall i \in \{1,2,3\}$ random sampling size = 200 & xx\% & xx\% & xx\% \\
    [1,2,1] &  & xx\% & xx\% & xx\% \\
    [1,2,2] &  & xx\% & xx\% & xx\% \\
    [1,3,1] &  & xx\% & xx\% & xx\% \\
    [1,1,1,1] & $p_i \in [0-300], \forall i \in \{1,2,3,4\}$ $c_i \in [0-300], \forall i \in \{1,2,3,4\}$ random sampling size = 200 & xx\% & xx\% & xx\% \\
    [1,2,1,1] &  & xx\% & xx\% & xx\% \\
    [1,3,1,1] &  & xx\% & xx\% & xx\% \\
    [1,2,1,2] &  & xx\% & xx\% & xx\% \\
    [1,3,1,1] &  & xx\% & xx\% & xx\% \\
    [1,2,1,2] &  & xx\% & xx\% & xx\% \\
    [1,2,2,1] &  & xx\% & xx\% & xx\% \\
    [1,2,2,2] &  & xx\% & xx\% & xx\% \\
    [1,3,2,1] &  & xx\% & xx\% & xx\% \\
    [1,1,1,1,1] & $p_i \in [0-300], \forall i \in \{1,2,3,4,5\}$ $c_i \in [0-300], \forall i \in \{1,2,3,4,5\}$ random sampling size = 200  & xx\% & xx\% & xx\% \\
    [1,2,1,1,1] &  & xx\% & xx\% & xx\% \\
    Average & - & xx\% & xx\% & xx\% \\
    \end{tblr}  
\end{table}

\end{document}

谢谢。

答案1

  1. 将表格放在 cf 文档的某一列上https://mirror.ufs.ac.za/ctan/macros/latex/contrib/IEEEtran/IEEEtran_HOWTO.pdfD 节 双列浮动 p.11
  2. \SetCell[r=2]{c}我们可以使用两行和三列来放置文本\SetCell[c=3]{c}
  3. 要转到单元格中的行,我们可以使用{$p_i \in [0-300], \forall i \in \{1,2,3,4\}$ $c_i \in [0-300], \forall i \in \{1,2,3,4\}$\\\rs}
  4. 我添加了一个\rs命令random sampling size=200
  5. 将最后一行\bfseries row{1,Z}={font=\bfseries}放在

代码

    \documentclass[journal]{IEEEtran}
    \usepackage{showframe}
    \usepackage{lipsum}
    \usepackage{tabularray}
    \newcommand{\rs}{random sampling size = 200}
    \begin{document}
    \lipsum[1-8]
    \begin{table*}[!t]
    \centering
    \caption{Test Table}

    \begin{tblr}{
        colspec = {X[1]X[3]X[1]X[1]X[1]X[1]}, 
        hlines, vlines, 
        columns={c},
        rows={m},
        row{1,Z}={font=\bfseries},
        }  
    \SetCell[r=2]{c}Wafer Flow Pattern   & \SetCell[r=2]{c}Parameters   & \SetCell[r=2]{c}Percentage of Instances Solved by MIP & \SetCell[c=3]{c}Average Gap from Optimal Solution \\

    &&&Swap & Backward & New Sequence \\

    [1,1,1] & \SetCell[r=4]{c}{$p_i \in [0-300], \forall i \in \{1,2,3\}$ $c_i \in [0-300], \forall i \in \{1,2,3\}$ \\\rs}& xx\% & xx\% & xx\% \\

    [1,2,1] &  & xx\% & xx\% & xx\% \\

    [1,2,2] &  & xx\% & xx\% & xx\% \\

    [1,3,1] &  & xx\% & xx\% & xx\% \\

    [1,1,1,1] & \SetCell[r=7]{c}{$p_i \in [0-300], \forall i \in \{1,2,3,4\}$ $c_i \in [0-300], \forall i \in \{1,2,3,4\}$\\\rs} & xx\% & xx\% & xx\% \\

    [1,2,1,1] &  & xx\% & xx\% & xx\% \\

    [1,3,1,1] &  & xx\% & xx\% & xx\% \\

    [1,2,1,2] &  & xx\% & xx\% & xx\% \\

    [1,3,1,1] &  & xx\% & xx\% & xx\% \\

    [1,2,1,2] &  & xx\% & xx\% & xx\% \\

    [1,2,2,1] &  & xx\% & xx\% & xx\% \\

    [1,2,2,2] &  & xx\% & xx\% & xx\% \\

    [1,3,2,1] &  & xx\% & xx\% & xx\% \\

    [1,1,1,1,1] & \SetCell[r=2]{c}{$p_i \in [0-300], \forall i \in \{1,2,3,4,5\}$ $c_i \in [0-300], \forall i \in \{1,2,3,4,5\}$\\\rs}  & xx\% & xx\% & xx\% \\

    [1,2,1,1,1] &  & xx\% & xx\% & xx\% \\

    Average & - & xx\% & xx\% & xx\% \\
    \end{tblr}
    \label{tab:table_x}
    \end{table*}

    \end{document}

在此处输入图片描述

相关内容