删除最后一列的边框

删除最后一列的边框

我有一个简单的表格:

\begin{table}[htbp]
    \centering
    \begin{tabular}{|c|c|c|}
        \hline
        X & Y & Z \\ \hline
        &   &   \\ \hline 
        &   &   \\ \hline
        &   &   \\ 
        \hline
    \end{tabular}
\end{table}

我想删除最后一列所有单元格的边框Z

这可能吗?

答案1

您应该从列规范中删除最后一条垂直线tabular,然后使用\clines:

在此处输入图片描述

\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|c|}
    \hline
    X & Y & Z \\ \hline
    1 &   &   \\ \hline 
    & 2  &   \\ \hline
    &   & 3  \\ 
    \hline
\end{tabular}

\begin{tabular}{|c|c|c}
    \cline{1-2}
    X & Y & Z \\ \cline{1-2}
    1 &   &   \\ \cline{1-2} 
    & 2  &   \\ \cline{1-2}
    &   & 3  \\ 
    \cline{1-2}
\end{tabular}

\end{document}

相关内容