\cellcolor で左/右のオーバーハングを定義する

\cellcolor で左/右のオーバーハングを定義する

表内の 1 行と 1 列を強調表示したいです。列は問題ありません。ただし、@{}定義で使用すると、行の最も外側の左と右のセルのカラー パネルが表の境界線からはみ出します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

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}

出力

関連情報