删除特定表格行的垂直线/格式

删除特定表格行的垂直线/格式

我想删除此表最后一行的所有垂直线(或任何格式)。任何有关如何执行此操作的提示都非常好!

begin{tabular}{||c c||} \\ 
\hline
Event & P(Event) \\ [0.5ex] 
\hline\hline
A=1 & 3/10 \\ 
\hline
B=1 & 3/10 \\
\hline
A=1\text{ and }B=1 & 1/10 \\
\hline
\\
$P(A=1)P(B=1)$ & 9/100
\end{tabular}

答案1

您可以使用\multicolumn{1}来为单元格指定不同的格式,c而不是||c这样:

\multicolumn{1}{c}{$P(A=1)P(B=1)$} &\multicolumn{1}{c}{9/100}

答案2

如果您使用{NiceTabular}( nicematrix≥ 4.0),则默认情况下将具有相同的表格。但是,您将有一个选项last-row。使用该键,垂直规则将不会绘制在最后一行(尽管如此,其他格式仍将保留)。

您可能需要两次编译。

\documentclass{article}
\usepackage{nicematrix}

\begin{document}

\begin{NiceTabular}{||CC||}[last-row] 
\hline
Event & P(Event) \\[0.5ex] 
\hline\hline
A=1 & 3/10 \\ 
\hline
B=1 & 3/10 \\
\hline
A=1\text{ and }B=1 & 1/10 \\
\hline
$P(A=1)P(B=1)$ & 9/100
\end{NiceTabular}

\end{document}

上述代码的结果

相关内容