表格背景颜色透明

表格背景颜色透明

目标: 我想要这个 我想使用一个表格,其中每个第二行都略带灰色。但是我在页面上还有一个背景图像,因此仅使用\rowcolors标准颜色是行不通的。

\documentclass{book}
\usepackage[table]{xcolor}
\usepackage{background}
\usepackage{eso-pic,graphicx}    

\backgroundsetup{
scale=1,
opacity=1,
angle=0,
color=black,
contents={%
 \ifodd\value{page}
   \AddToShipoutPictureBG*{\includegraphics[width=\paperwidth]{Images/Backgrounds/HeXXenBG_Left_LQ}}
  \else
   \AddToShipoutPictureBG*{\includegraphics[width=\paperwidth]{Images/Backgrounds/HeXXenBG_Right_LQ}}
  \fi
    }
}

\begin{document}
\rowcolors{2}{black!40}{}
\begin{tabular}{l|l|l|l}
{\scshape Spalte 1}&{\scshape Spalte 2}&{\scshape Spalte 3}&{\scshape Spalte 4}\\\hline\hline
Beispiel 1 & Hier geht mehr rein. & A & Die Tabelle sollte sich an die Textspalten halten\\
Beispiel 2 & Genauso hier. & B & Das musst du manuell machen.leider\\
\end{tabular}
\end{document}

当前的: 这就是我得到的 是否有可能激活多重混合模式,用于表格背景颜色?或者其他解决方法?

编辑:我正在使用 xelatex 进行编译,因此复制不起作用

相关内容