如何在 LaTeX 中排版一些行和列合并的表格?

如何在 LaTeX 中排版一些行和列合并的表格?

亲爱的朋友们:我有一个特殊的表格,需要在 LaTeX 中为期刊论文排版,其中的一些列和行是合并的。这只是一个简单的表格,可以在 MS-Word 中轻松完成,但我不知道如何在 LaTeX 中完成。请帮我提供随附的图片(表格)。非常感谢在此处输入图片描述

答案1

只是为了好玩,由 组成的同一张桌子tabularray。第一个版本v1与您的版本相同,第二个版本的v2构图更专业。

\documentclass[12pt]{report}
\usepackage{caption}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
\begin{document}
\begin{table}
  \caption{Comparative analysis of Methods 1, 2 and 3 (v1)}
  \centering
  \begin{tblr}{
      colspec={|c|c|c|c|},
      row{1-2}={font=\bfseries},
    }
    \midrule
    \SetCell[r=2]{c} Parameters & \SetCell[c=2]{c} Existing Methods & & Proposed Method \\
    \midrule
    & Method 1 & Method 2 & Method 3  \\
    \midrule
    A & A1 & A2 & A3  \\
    \midrule
    B & B1 & B2 & B3  \\
    \midrule
  \end{tblr}
\end{table}
\begin{table}
  \caption{Comparative analysis of Methods 1, 2 and 3 (v2)}
  \centering
  \begin{tblr}{
      colspec={cccc},
      row{1-2}={font=\bfseries},
    }
    \SetCell[r=2]{c} Parameters & \SetCell[c=2]{c} Existing Methods &  & Proposed Method \\
    \cmidrule[lr]{2-3} \cmidrule[lr]{4}
    & Method 1 & Method 2 & Method 3 \\
    \midrule
    A & A1 & A2 & A3  \\ 
    B & B1 & B2 & B3  \\
  \end{tblr}
\end{table}
\end{document}

在此处输入图片描述

答案2

这是一个{NiceTabular}使用 的解决方案nicematrix

\documentclass[12pt]{report}
\usepackage{nicematrix}
 
\begin{document}
 
\begin{table}

\renewcommand{\arraystretch}{1.5}
\centering
\begin{NiceTabular}{cccc}[hvlines]
\RowStyle[nb-rows=2]{\bfseries}
\Block{2-1}{Parameters} & \Block{1-2}{Existing Methods} && Proposed Method \\ 
 & Method 1 & Method 2 & Method 3 \\ 
 A & A1 & A2 & A3 \\ 
 B & B1 & B2 & B3 \\ 
\end{NiceTabular}

\caption{Comparative analysis of Methods 1, 2 and 3}

\end{table}

\end{document} 

上述代码的输出

答案3

感谢 leandriis 的评论,我尝试在 LaTeX 中创建排版,输出令人满意。我在下面分享我的输入文件。

\documentclass[12pt]{report}
 \usepackage{multirow}
 
 \begin{document}
 
 \begin{table}
  \renewcommand{\arraystretch}{1.5}
 \centering
\begin{tabular}{|c|c|c|c|}
\hline
\multirow{2}{*}{\textbf{Parameters}} & \multicolumn{2}{ c| }{\textbf{Existing Methods}}& \textbf{Proposed Method} \\ 
\cline{2-4}
 & \textbf{Method 1} & \textbf{Method 2} & \textbf{Method 3} \\ \hline
 A & A1 & A2 & A3 \\ \hline
 B & B1 & B2 & B3 \\ \hline 
\end{tabular}
\caption{Comparative analysis of Methods 1, 2 and 3}
\end{table}

\end{document} 

LaTeX 输出 - 表格

相关内容