透明的填充推荐借助tikz,去看看 tcolorbox 里表格制作,有透明度的例子。
https://tex.stackexchange.com/questions/473364/color-table-rows-and-columns
\documentclass{article}
\usepackage{nicematrix,tikz}
\begin{document}
\begin{NiceTabular}{ccc}
\CodeBefore
\begin{tikzpicture}
\fill [gray!10] (2-|1) rectangle (3-|last)
(4-|1) rectangle (5-|last) ;
\fill [blue,fill opacity = 0.2] (1-|2) rectangle (last-|3) ;
\end{tikzpicture}
\Body
a & b & c \\ \hline
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\
\end{NiceTabular}
\end{document}
问 制作颜色表格时,怎么使用透明的颜色填充?