使用 \cellcolor 定義左/右懸垂

使用 \cellcolor 定義左/右懸垂

我想突出顯示表格中的一行和一列。柱子沒問題。但是,如果我在定義@{}中使用,行中最外面的左側和右側單元格的顏色面板會超出表格的邊框tabular

\documentclass{scrartcl}
\usepackage{colortbl,booktabs}
\begin{document}
\begin{table}[h]
  \setlength{\aboverulesep}{0pt} % align \bottomrule nicely to coloured cell
  \setlength{\belowrulesep}{0pt} % align \toprule nicely to coloured cell
  \setlength{\extrarowheight}{.75ex} % make up for lost ruleseps

  \begin{tabular}{@{}c>{\columncolor[gray]{.9}}cc@{}} \toprule
                        a & b & c \\
                        d & e & f \\
    \rowcolor[gray]{.9} g & h & i \\
    \bottomrule
  \end{tabular}
\end{table}
\end{document}

問題很明顯:

行顏色懸垂

使用\rowcolor[gray]{.9}[0pt][0pt]減少懸垂不是一種選擇,因為該行將不再完全突出顯示。

到目前為止我嘗試過的

  1. 重新定義突出顯示的行,如下所示列印[0pt]到儲存格中,但不起作用,儘管建議這樣做這裡

    \rowcolor[gray]{.9}\cellcolor{white}\cellcolor[gray]{.9}[0pt] g & h & i \\
    
  2. 像這樣重新定義突出顯示的行也不起作用:

    \rowcolor[gray]{.9}[0pt][0pt] g & \cellcolor[gray]{.9} h & i \\
    

    中間的單元格保持突出顯示,就像只\rowcolor[gray]{.9}[0pt][0pt]定義了......

是否有其他可能性來修剪顏色面板以使其\bottomrule左右對齊?

答案1

一種方法是固定列寬。我不確定這是否是一種非常優雅的方式。

\documentclass{scrartcl}
\usepackage{colortbl,booktabs}
\begin{document}

\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}

\begin{table}[h]
\setlength\tabcolsep{0pt}
  \begin{tabular}{C{1em}>{\columncolor[gray]{.9}} C{1em} C{1em}} \toprule
                        a  & b & c \\
                        d & e & f \\
    \rowcolor[gray]{.9} g & h & i \\
    \bottomrule
  \end{tabular}
\end{table}
\end{document}
\end{document}

答案2

\documentclass{scrartcl}

\usepackage{booktabs}
\usepackage[table]{xcolor}

\colorlet{tablerowcolor}{yellow}%\colorlet{tablerowcolor}{gray!10}

\newcommand*{\ct}[1]{\multicolumn{1}{>{\columncolor{tablerowcolor}}c}{#1}}
\newcommand*{\fct}[1]{\multicolumn{1}{>{\columncolor{tablerowcolor}\hspace*{-\tabcolsep}}c}{#1}}
\newcommand*{\lct}[1]{\multicolumn{1}{>{\columncolor{tablerowcolor}}c<{\hspace*{-\tabcolsep}}}{#1}}
\newcommand*{\cfct}[1]{\multicolumn{1}{>{\columncolor{tablerowcolor}[\dimexpr\tabcolsep-\cmidrulekern\relax][\tabcolsep]\hspace*{-\tabcolsep}}c}{#1}}
\newcommand*{\clct}[1]{\multicolumn{1}{>{\columncolor{tablerowcolor}[\tabcolsep][\dimexpr\tabcolsep-\cmidrulekern\relax]}c<{\hspace*{-\tabcolsep}}}{#1}}

\begin{document}

\begin{table}[h]
    \setlength{\aboverulesep}{0pt} % align \bottomrule nicely to coloured cell
    \setlength{\belowrulesep}{0pt} % align \toprule nicely to coloured cell
    \setlength{\extrarowheight}{.75ex} % make up for lost ruleseps

    \begin{tabular}{ @{}r@{} }
        \\
        reference \\
        wrong alignment if overhang \\
        fitted to \texttt{\textbackslash midrule} \\
        fitted to \texttt{\textbackslash cmidrule(lr)} \\
    \end{tabular}
    %
    \begin{tabular}{ @{}*{3}{c}@{} }
        \toprule
        test    & test & test    \\
        \midrule
              a & b    &       c \\
        \ct   a & b    & \ct   c \\
        \midrule
        \fct  a & b    & \lct  c \\
        \cmidrule(lr){1-3}
        \cfct a & b    & \clct c \\
        \bottomrule
    \end{tabular}
\end{table}

\end{document}

輸出

相關內容