限制表格中的垂直线

限制表格中的垂直线

我想创建一个表格

在此处输入图片描述

到目前为止我已经实现了

        \begin{tabular}{ |c|c|c|c|c| c }
            \cline{1-5}
            cell1 & cell2 & cell3 & cell4 & cell5 & 11 \\
            \cline{1-5}
            cell6 & cell7 & cell8 & cell9 & cell10 & 12 \\
            \cline{1-5}
            cell11 & cell12 & cell13 & cell14 & cell15 & 7 \\
            \cline{1-5}
            6 & 6 & 3 & 2 & 13 \\
        \end{tabular}

这让我明白

在此处输入图片描述

不是我想要的。我想我必须使用 \multicolumn 命令,但我不知道该怎么做。有什么提示吗?

答案1

使用基于的自定义命令\multicolumn{1}{c}

在此处输入图片描述

\documentclass{article}
\newcommand{\mymc}[1]{\multicolumn{1}{c}{#1}}
\begin{document}

\begin{tabular}{ |c|c|c|c|c| c }
            \cline{1-5}
            cell1 & cell2 & cell3 & cell4 & cell5 & 11 \\
            \cline{1-5}
            cell6 & cell7 & cell8 & cell9 & cell10 & 12 \\
            \cline{1-5}
            cell11 & cell12 & cell13 & cell14 & cell15 & 7 \\
            \cline{1-5}
            \mymc{6} & \mymc{6} & \mymc{3} & \mymc{2} & \mymc{13} \\
\end{tabular}
        
\end{document}

相关内容