行高不一样

行高不一样

在此处输入图片描述

我创建了一个如下图所示的表格,但我不确定这样是否可行。我的意思是,为什么两行的第一行之后会显示行间隙。我用红色标记了它。或者这是正确的行为??有人可以告诉我吗?我在这里添加了我的代码。

\begin{table}[htbp]
    \centering
    \caption{Summary of the comparison with existing approaches}
    \label{tab:Testing Results} 
    \begin{tabular}{|p{.30 cm}|p{2.2cm}|l|l|l|}
        \hline
         \multicolumn{2}{|p{2.5cm}|} {\diagbox { }{Approach}}&Lizhi [4]&Yuan [9]&Our Approach\\\hline
                      CS1 & Total Paths &6 &10 &3\\  \cline{2-5}
                     & Feasible Paths &6 &3 &3\\  \cline{2-5}
                     & Infeasible Paths &0 &7 &0 \\\hline 
                     CS2 & Total Paths &35 &6 &1\\ \cline{2-5}
                     & Feasible Paths &35 &4 &1\\ \cline{2-5}
                     & Infeasible Paths &0 &2 &0 \\\hline
    \end{tabular}
\end{table}

答案1

表格的简化版本,行数更少且数字对齐:

\documentclass{article}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{diagbox}
\usepackage{siunitx}
\begin{document}
\begin{table}[htbp]
  \centering
  \caption{Summary of the comparison with existing approaches}
  \label{tab:Testing Results}
  \begin{tabular}{
    l
    l
    S[table-format=2]
    S[table-format=2]
    S[table-format=1]
  }
    \toprule
    & & \multicolumn{3}{c}{Approach}\\
    \cmidrule{3-5}
    & & {Lizhi [4]}&{Yuan [9]}&{Our approach}\\
    \midrule
    CS1 & Total paths &6 &10 &3\\
        & Feasible paths &6 &3 &3\\
        & Infeasible paths &0 &7 &0 \\
    \addlinespace
    CS2 & Total paths &35 &6 &1\\
        & Feasible paths &35 &4 &1\\
        & Infeasible paths &0 &2 &0 \\
    \bottomrule
  \end{tabular}
\end{table}
\end{document}

结果

进一步说明:

  • 参考书目也可以用 LaTeX 来完成,[4]并且[9]可以通过调用宏来替换\cite

  • 我看不出使用标题大小写的理由。因此,该示例对表中的条目使用了简单句子大小写。

  • Our approach可能会被截断为Our

相关内容