具有多行的表格

具有多行的表格

在此处输入图片描述

请帮我在 Latex 中制作这个表格我已经尝试过这个代码

\begin{table}[h]

  \begin{center}

\caption{Mean of MSEs for training set for Example 1.}

\label{tab:table1}

\begin{tabular}{c c c c}

\multirow{2}{*}{Step size}

&\multicolumn{3}{c}{Number of iteration}\\

\cline{2-4}

(h)&1000 & 3000 &5000\\

\hline

$0.1$ & $1.574 \times 10^{−5} \pm 3.879 \times 10^{−5}$ & $1.498 \times 10^{−6} \pm 1.498 \times 10^{−6}$ & $5.191 \times 10^{−5} \pm 1.596 \times 10^{−4}$\\

    \end{tabular}

  \end{center}

\end{table}

答案1

嗯,对于零近似,您可以执行以下操作。

\documentclass{article}
\usepackage{booktabs}
\usepackage[margin=0.5in]{geometry}
\begin{document}
\begin{table}[h]
\centering
\caption{Mean of MSEs for training set for Example 1.}
\label{tab:table1}

\begin{tabular}{c c c c}
\toprule
Step size
&\multicolumn{3}{c}{Number of iteration}\\
\cmidrule{2-4}

(h)&1000 & 3000 &5000\\
\midrule
0.1 & $1.574 \times 10^{-5} \pm 3.879 \times 10^{-5}$ & 
$1.498 \times 10^{-6} \pm 1.498 \times 10^{-6}$ & 
$5.191 \times 10^{-5} \pm 1.596 \times 10^{-4}$\\
\bottomrule
\end{tabular}
\end{table}
\end{document}

在此处输入图片描述

但是,每个实际解决方案都需要您上传一个最小工作示例,以向其他人展示您的文档的外观(页面几何形状、文档类别、字体大小)。也就是说,您可能需要上传一个像上面一样但带有您的设置的最小文档。

相关内容