我尝试将\multirow
第一列和最后一列设为 s,以下是我能得到的最接近的结果。您能指导我如何做到这一点吗(就像下面在 Excel 中绘制的表格一样)?
\begin{tabular}{ |l|l|l|l| }
\hline
\multicolumn{4}{ |c| }{Convergence} \\
\hline
Time & \multicolumn{2}{ |c| }{Information} & Graph \\ \hline
\multirow{3}{*}{1} & Vertice & 1 & 0.5 \\ \cline{2-1} \cline{3-1}
& ${P(1)}$ & 0.5 & 0.5 \\ \cline{2-2} \cline{3-2}
& Chance & 0.5 & 0.5 \\
\hline
\multirow{3}{*}{1} & Vertice & 1 & 0.5 \\
& ${P(1)}$ & 0.5 & 0.5 \\
& Chance & 0.5 & 0.5 \\
\hline
\end{tabular}
答案1
哈哈,明白了!
\begin{tabular}{ |l|l|l|l| }
\hline
\multicolumn{4}{ |c| }{Convergence} \\
\hline
Time & \multicolumn{2}{ |c| }{Information} & Graph \\ \hline
\multirow{3}{*}{1} & Vertice & 1 & \multirow{3}{*}{1} \\ \cline{2-1} \cline{3-1}
& ${P(1)}$ & 0.5 & \\ \cline{2-2} \cline{3-2}
& Chance & 0.5 & \\
\hline
\multirow{3}{*}{1} & Vertice & 1 & 0.5 \\
& ${P(1)}$ & 0.5 & 0.5 \\
& Chance & 0.5 & 0.5 \\
\hline
\end{tabular}