为什么 eso-pic 会关闭 Tikz 文本不透明度?

为什么 eso-pic 会关闭 Tikz 文本不透明度?

没有eso-pic

\documentclass{article}
    \usepackage{fullpage}
    \usepackage{lmodern}
    \usepackage{tikz}
\begin{document}
\begin{tikzpicture}[remember picture, overlay]
    \node[color=red,text opacity=0.25,rotate=45,font=\fontsize{150}{30}\selectfont]
        at (current page.center) {Draft};
\end{tikzpicture}
watermark:
\end{document}

我得到了我想要的不透明度: 正确的不透明度

但当我添加eso-pic

\documentclass{article}
    \usepackage{fullpage}
    \usepackage{lmodern}
    \usepackage{tikz}
    \usepackage{eso-pic}
        \AddToShipoutPicture{
%            \ifnum\value{page}>1
                \begin{tikzpicture}[remember picture, overlay]
                    \node[color=red,text opacity=0.1,rotate=45,font=\fontsize{150}{30}\selectfont]
                        at (current page.center) {Draft};
                \end{tikzpicture}
%            \fi
        }
\begin{document}
watermark:
\end{document}

我似乎失去了 Tikz 的不透明度: 无不透明度

有人知道我做错什么了吗?

相关内容