我正在尝试编写一个表格来显示以下游戏。但无论我做什么,都不起作用。有人能帮忙吗?
我不在乎颜色。全黑就好。
我还想要它的变体,其中 T、M、B 和 L、C、R 在表格中,即在盒子中。
这是我尝试过的代码,但它并没有完全产生我想要的结果。
\begin{center}
\begin{tabular}{cc|c|c|c|}
& & \multicolumn2c{Player 2} \\
%& \multicolumn2c{} & \multicolumn1c{$p$} & \multicolumn1c{$1-p$} \\
\cline{3-5}
&& L & C & R \\
\cline{2-5}
\multirow2*{Player 1} &T & (1,7)
& (1,1) & (7,0)\\
\cline{2-5}
& M & (5,3) & (7,4) & (5,1)\\
\cline{2-5}
& B & (3,0) & (6,5) & (6,0)\\
\cline{2-5}
\end{tabular}
\end{center}
谢谢!
答案1
您需要几个 来\multicolumn{1}{}{}
抑制垂直线。不需要\multirow
。
\documentclass{article}
\begin{document}
\begin{tabular}{cc|c|c|c|}
& \multicolumn{1}{c}{} & \multicolumn{3}{c}{Player 2} \\
& \multicolumn{1}{c}{} & \multicolumn{1}{c}{L} & \multicolumn{1}{c}{C} & \multicolumn{1}{c}{R} \\ \cline{3-5}
& T & (1,7) & (1,1) & (7,0) \\ \cline{3-5}
Player 1 & M & (5,3) & (7,4) & (5,1) \\ \cline{3-5}
& B & (3,0) & (6,5) & (6,0) \\ \cline{3-5}
\end{tabular}
\begin{tabular}{c|c|c|c|c|}
\multicolumn{2}{c}{} & \multicolumn{3}{c}{Player 2} \\ \cline{3-5}
\multicolumn{1}{c}{} & & L & C & R \\ \cline{2-5}
& T & (1,7) & (1,1) & (7,0) \\ \cline{2-5}
Player 1 & M & (5,3) & (7,4) & (5,1) \\ \cline{2-5}
& B & (3,0) & (6,5) & (6,0) \\ \cline{2-5}
\end{tabular}
\end{document}
答案2
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{center}
\begin{tabular}{cc|c|c|c|}
& \multicolumn{1}{c}{} & \multicolumn{3}{c}{Player 2} \\
& \multicolumn{1}{c}{} & \multicolumn{1}{c}{L} & \multicolumn{1}{c}{C} & \multicolumn{1}{c}{R} \\
\cline{3-5}
\multirow3*{Player 1} &T & (1,7)
& (1,1) & (7,0)\\
\cline{3-5}
& M & (5,3) & (7,4) & (5,1)\\
\cline{3-5}
& B & (3,0) & (6,5) & (6,0)\\
\cline{3-5}
\end{tabular}
\end{center}
\begin{center}
\begin{tabular}{c|c|c|c|c|}
\multicolumn{1}{c}{} & \multicolumn{1}{c}{} & \multicolumn{3}{c}{Player 2} \\
\cline{2-5}
& & L & C & R \\
\cline{2-5}
\multirow3*{Player 1} & T & (1,7)
& (1,1) & (7,0)\\
\cline{2-5}
& M & (5,3) & (7,4) & (5,1)\\
\cline{2-5}
& B & (3,0) & (6,5) & (6,0)\\
\cline{2-5}
\end{tabular}
\end{center}
\end{document}