我需要制作一个有 4 列的表格。第一列有 2 个单元格。第二列有 4 个单元格。第三列被分成三个不同的部分。第四列被分成三个不同的部分。我知道如何制作一个有四列的表格,但不知道如何拆分一列。所附图片正是我想要做的。注意:所附图片中未显示(她的结果)列,但它应该与(我的结果)列相同。我不知道我的 MWE 是否有用。我不知道如何![在此处输入图片说明][1] 正确制作此表格。有人可以帮忙吗?我的 MWE 是:
\begin{table}[ht]
\caption{.} % title of Table
\centering % used for centering table
\begin{tabular}{c c c c} % centered columns (4 columns)
\hline\hline %inserts double horizontal lines
Metal thickness$(nm)$ & Metal width$(\mum)$ & My Results & Her Results\\ [0.5ex] % inserts table
%heading
\hline % inserts single horizontal line
25 & 8 & 1.447413 & 0.9627 & 2.128 \\ % inserting body of the table
#
在 #egreg 解决了这个问题之后,我尝试添加一个额外的列,该列也由三部分组成,就像 (我的结果) 列一样。 但是,我遇到了错误。 这就是我在 egreg 的答案中提供的代码中添加额外列的方式。
\newcommand{\splitcell}[1]{%
\begin{tabular}{@{}c@{}}\strut#1\strut\end{tabular}%
}
\begin{table}[htp]
\centering
\caption{The table caption}
\begin{tabular}{
S[table-format=2.0]
S[table-format=1.0]
S[table-format=1.6]
S[table-format=1.4]
S[table-format=1.3]
}
\toprule
{$t$ (\si{\nano\meter})} &
{$W$ (\si{\micro\meter})} &
\multicolumn{3}{c}{My results} \\
\cmidrule{3-5}
& &
{Re} &
{\splitcell{Theor.\\Overlap\\factor}} &
{\splitcell{Theor.\\MPA\\(\si{dB/mm})}} \\
\midrule
25 & 8 & 1.447413 & 0.9627 & 2.128 \\
& 4 & 1.446128 & 0.9538 & 1.20 \\
\midrule
31 & 8 & 1.448499 & 0.9377 & 4.196 \\
& 4 & 1.446889 & 0.9571 & 2.78 \\
\bottomrule
\multicolumn{3}{c}{her results} \\
\cmidrule{6-8}
& &
{Re} &
{\splitcell{Theor.\\Overlap\\factor}} &
{\splitcell{Theor.\\MPA\\(\si{dB/mm})}} \\
\midrule
25 & 8 & 1.447413 & 0.9627 & 2.128 \\
& 4 & 1.446128 & 0.9538 & 1.20 \\
\midrule
31 & 8 & 1.448499 & 0.9377 & 4.196 \\
& 4 & 1.446889 & 0.9571 & 2.78 \\
\bottomrule
\end{tabular}
\end{table}
[1
答案1
这是我的建议,有booktabs
,siunitx
但没有垂直规则:
\documentclass{article}
\usepackage{siunitx,booktabs,caption}
\newcommand{\splitcell}[1]{%
\begin{tabular}{@{}c@{}}\strut#1\strut\end{tabular}%
}
\begin{document}
\begin{table}[htp]
\centering
\caption{The table caption}
\begin{tabular}{
S[table-format=2.0]
S[table-format=1.0]
S[table-format=1.6]
S[table-format=1.4]
S[table-format=1.3]
}
\toprule
{$t$ (\si{\nano\meter})} &
{$W$ (\si{\micro\meter})} &
\multicolumn{3}{c}{My results} \\
\cmidrule{3-5}
& &
{Re} &
{\splitcell{Theor.\\Overlap\\factor}} &
{\splitcell{Theor.\\MPA\\(\si{dB/mm})}} \\
\midrule
25 & 8 & 1.447413 & 0.9627 & 2.128 \\
& 4 & 1.446128 & 0.9538 & 1.20 \\
\midrule
31 & 8 & 1.448499 & 0.9377 & 4.196 \\
& 4 & 1.446889 & 0.9571 & 2.78 \\
\bottomrule
\end{tabular}
\end{table}
\end{document}