multirow、colortbl、booktabs: cellcolor を使用するときに \cmidrule と \cline (白線) を含めると問題が発生する

multirow、colortbl、booktabs: cellcolor を使用するときに \cmidrule と \cline (白線) を含めると問題が発生する
\documentclass[12pt]{article}

\usepackage[
    a4paper,
    margin = 5mm,
    landscape,
    %showframe,
    ]
    {geometry}

\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{multirow}

\renewcommand{\aboverulesep}{0pt}
\renewcommand{\belowrulesep}{0pt}

\usepackage[table]{xcolor}    % loads also colortbl
\definecolor{myTableColor}{gray}{0.80}

\usepackage[sfdefault]{cabin}

\begin{document}

\noindent
\setlength{\arrayrulewidth}{1pt}
\begin{tabularx}{\textwidth}{lc|l|X|X|X|X}
\toprule
\rowcolor{myTableColor}
\multicolumn{2}{l}{\textbf{Text}} & Text & Text & Text & Text & Text\\
\midrule
Text & \cellcolor{myTableColor} & & & & & \\
%\cmidrule{3-7}
\cline{3-7}
Text & \cellcolor{myTableColor}\multirow{-2}{*}{A} & & & & & \\
\midrule
\multicolumn{2}{l|}{Text} & & & & & \\
\midrule
Text & \cellcolor{myTableColor} & & & & & \\
\cmidrule{3-7}
%\cline{3-7}
Text & \cellcolor{myTableColor}\multirow{-2}{*}{A} & & & & & \\
\bottomrule
\end{tabularx}

% \multirow{-2}{*}{A} is taken from user Gonzalo Medina
% https://tex.stackexchange.com/questions/21155

\end{document}

ここに画像の説明を入力してください


  • 私はmultirowとを持っていますcellcolor
  • \cmidruleから利用したいですbooktabs
  • 奇妙な白い線が表示されます。
  • \cline正常に動作します。
  • 私も試してみました\cmidrule[0pt]
  • \cmidruleまた、との線幅も\midrule異なるようです。

答え1

makecellこのコードは、 およびに関してほぼ必要なことを行います\Xcline{3-7}{0.05em}。 の値は、( )0.05emのデフォルトの太さです。 に関しては、デフォルトは です。\midrule\lightrulewidth\cmidrule0.03em

\documentclass[12pt]{article}

\usepackage[
    a4paper,
    margin = 5mm,
    landscape,
    %showframe,
    ]
    {geometry}

\usepackage{tabularx}
\usepackage{booktabs, makecell}
\usepackage{multirow}

\renewcommand{\aboverulesep}{0pt}
\renewcommand{\belowrulesep}{0pt}

\usepackage[table]{xcolor} % loads also colortbl
\definecolor{myTableColor}{gray}{0.80}

\usepackage[sfdefault]{cabin}

\begin{document}

\noindent
\setlength{\arrayrulewidth}{1pt}
\begin{tabularx}{\textwidth}{lc|l|X|X|X|X}
\toprule
\rowcolor{myTableColor}
\multicolumn{2}{l}{\textbf{Text}} & Text & Text & Text & Text & Text\\
\midrule
Text & \cellcolor{myTableColor} & & & & & \\
\Xcline{3-7}{0.05em}
Text & \cellcolor{myTableColor}\multirow{-2}{*}{A} & & & & & \\
\midrule
\multicolumn{2}{l|}{Text} & & & & & \\
\midrule
Text & \cellcolor{myTableColor} & & & & & \\
\Xcline{3-7}{0.05em}
Text & \cellcolor{myTableColor}\multirow{-2}{*}{A} & & & & & \\
\bottomrule
\end{tabularx}

% \multirow{-2}{*}{A} is taken from user Gonzalo Medina
% https://tex.stackexchange.com/questions/21155

\end{document} 

ここに画像の説明を入力してください

答え2

{NiceTabular}of を使用すると、期待される出力でおよびをnicematrix直接使用できます。\midrule\cmidrulebooktabs

\documentclass[12pt]{article}
\usepackage{xcolor} 
\usepackage[a4paper,margin = 5mm,landscape]{geometry}

\usepackage{booktabs}
\renewcommand{\aboverulesep}{0pt}
\renewcommand{\belowrulesep}{0pt}

\usepackage{nicematrix}


\definecolor{myTableColor}{gray}{0.80}

\usepackage[sfdefault]{cabin}

\begin{document}

\noindent
\setlength{\arrayrulewidth}{1pt}
\begin{NiceTabularX}{\textwidth}{lc|l|X|X|X|X}
\toprule
\RowStyle[rowcolor=myTableColor]{}
\Block[l]{1-2}{\textbf{Text}} & Text & Text & Text & Text & Text \\
\midrule
Text & \Block[fill=myTableColor]{2-1}{A} & & & & & \\
\cmidrule{3-7}
Text \\
\midrule
Text \\
\midrule
Text & \Block[fill=myTableColor]{2-1}{A} & & & & & \\
\cmidrule{3-7}
Text \\
\bottomrule
\end{NiceTabularX}
    
\end{document}

複数のコンパイルが必要です (nicematrix内部で PGF/Tikz ノードが使用されるため)。

上記コードの出力

関連情報