我有一张桌子:
\begin{center}
\begin{tabular}{| c || c | c | c | c | c |}
\hline
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
\hline
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
\hline
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
\hline\hline
& $X=3$ & $X=5$ & $X=7$ & $X=9$ & $X=11$ \\
\hline
\end{tabular}
\end{center}
我想清除左下角的空白框线。如何实现这个效果?
答案1
与。{NiceTabular}
nicematrix
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\begin{center}
\renewcommand{\arraystretch}{1.4}
\begin{NiceTabular}{c||ccccc}[corners,hvlines]
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
\Hline\Hline
& $X=3$ & $X=5$ & $X=7$ & $X=9$ & $X=11$ \\
\end{NiceTabular}
\end{center}
\end{document}
您需要多次编译。
答案2
保留环境使用的解决方案tabular
。
\documentclass{article} % or some other suitable document class
\usepackage{array}
\begin{document}
\begin{center}
\begin{tabular}{ |c|| *{5}{c|} }
\hline
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
\hline
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
\hline
$Y=11$ & 0.2 & 0.0 & 0.1 & 0.0 & 0.1 \\
\hline\hline
\multicolumn{1}{c||}{} & $X=3$ & $X=5$ & $X=7$ & $X=9$ & $X=11$ \\
\cline{2-6}
\end{tabular}
\end{center}
\end{document}