我正在尝试重新创建附加表(左侧)。我设法使用以下代码创建了右侧表:
\begin{tabular}{c|cccc|c}
\hline
\backslashbox{$X_i$}{$Y_i$} & $y_i$ & $y_2$ & $\ldots$ & $y_s$ & $\Sigma$\\
\hline
$x_i$ & $n_{11}$ & $n_{12}$ & $\ldots$ & $n_{1s}$ & $n_{1\cdot}$\\
$x_2$ & $n_{21}$ & $n_{22}$ & $\ldots$ & $n_{2s}$ & $n_{2\cdot}$\\
$\vdots$ & $\vdots$ & $\vdots$ & $\ddots$ & $\vdots$ & $\ddots$\\
$x_r$ & $n_{r1}$ & $n_{r2}$ & $\ldots$ & $n_{rs}$ & $n_{r\cdot}$\\
\hline
$\Sigma$ & $n_{\cdot1}$ & $n_{\cdot2}$ & $\ldots$ & $n_{\cdot s}$ & $n$\\
\hline
\end{tabular}
如何才能使垂直线不与水平线相交?
答案1
一种方法是使用包\midrule
中的功能booktabs
。
代码:
\documentclass{article}
\usepackage{slashbox}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{c|cccc|c}
\midrule
\backslashbox{$X_i$}{$Y_i$} & $y_i$ & $y_2$ & $\ldots$ & $y_s$ & $\Sigma$\\
\midrule
$x_i$ & $n_{11}$ & $n_{12}$ & $\ldots$ & $n_{1s}$ & $n_{1\cdot}$\\
$x_2$ & $n_{21}$ & $n_{22}$ & $\ldots$ & $n_{2s}$ & $n_{2\cdot}$\\
$\vdots$ & $\vdots$ & $\vdots$ & $\ddots$ & $\vdots$ & $\ddots$\\
$x_r$ & $n_{r1}$ & $n_{r2}$ & $\ldots$ & $n_{rs}$ & $n_{r\cdot}$\\
\midrule
$\Sigma$ & $n_{\cdot1}$ & $n_{\cdot2}$ & $\ldots$ & $n_{\cdot s}$ & $n$\\
\midrule
\end{tabular}
\end{document}
产量: