\begin{center}
\begin{tabular} {|c|c|c|c|c|}
\cline{1-4}
& & \multicolumn{3}{c}{Player 1} \\ \cline{1-4}
& & $\alpha$ & $\beta$ \\
\cline{1-4}
\multirow{2}{*}{Player 2} & $\alpha$ & $0,0$ & $3,-1$\\
\cline{2-4}
& $\beta$ & $-1,3$ & $0,0$ \\
\cline{1-4}
\end{tabular}
\end{center}
我犯了什么错误?
另外,我想删除第一行中玩家 1 左侧的左侧垂直线。我应该怎么做?
答案1
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{center}
\renewcommand{\arraystretch}{1.2}
\begin{tabular}{|c|c|c|c|}
\hline
\multicolumn{2}{|c|}{} & \multicolumn{2}{c|}{Player 1} \\ \cline{3-4}
\multicolumn{2}{|c|}{} & $\alpha$ & $\beta$ \\
\hline
\multirow{2}{*}{Player 2} & $\alpha$ & $0,0$ & $3,-1$\\
& $\beta$ & $-1,3$ & $0,0$ \\
\hline
\end{tabular}
\end{center}
\end{document}
答案2
\multicolumn{3}{c|}{Player 1}
在右侧添加行,并\multicolumn{1}{c}{}
在前一个单元格中删除左侧的行。