表格单元格对齐 - 最后一列“行为不当” - 同时出现垂直和水平对齐问题

表格单元格对齐 - 最后一列“行为不当” - 同时出现垂直和水平对齐问题

我对表格环境中的对齐有点着迷。

在下面的代码中,我希望左上角的单元格“Green Die”和第二行最后一个单元格“6”垂直对齐。

我知道单元格“6”的对齐问题与它是最后一列有关,因为如果我将它设为倒数第二列,它就会在中间对齐。

提前感谢所有帮助!

\documentclass[11pt]{article}   
\usepackage{array, multirow}
\begin{document}

\newcolumntype{S}{>{\centering\arraybackslash} m{1.2cm} }
\begin{tabular}{|S|S|S|S|S|S|S|}
\hline

\multirow{2}{1.2cm} {\centering Green Die}&\multicolumn{6}{|c|} {Red Die} \\ \cline{2-7}

&1&2&3&4&5& 6\\ [4pt] \hline
1& 1+1=2&&&&&\\ [4pt]\hline
2&&&&&&\\[4pt] \hline
3&&&&&&\\[4pt] \hline
4&&&&&&\\ [4pt]\hline
5&&&&&&\\[4pt] \hline
6&&&&&&\\ [4pt]\hline
\end{tabular}

\end{document}

答案1

\documentclass[11pt]{article}    
\usepackage{array,ragged2e}
\newcolumntype{S}[1]{>{\Centering}m{#1}}

\begin{document}

\def\arraystretch{1.5}
\begin{tabular}{|*{7}{S{1.2cm}|}}\hline
\makebox(0,-10){\parbox{1.2cm}{\centering Green Die}} 
     & \multicolumn{6}{c|} {Red Die} \\\cline{2-7}
 & 1 & 2 & 3 & 4 & 5 & 6\\ \hline
1& 1+1=2&&&&&\\\hline
2&&&&&&\\\hline
3&&&&&&\\\hline
4&&&&&&\\\hline
5&&&&&&\\\hline
6&&&&&&\\\hline
\end{tabular}

\end{document}

在此处输入图片描述

相关内容