Backgroundsetup 不在后台?

Backgroundsetup 不在后台?

我的 latex 文件中的每一页都有一个 backgroundsetup。但我希望 backgroundsetup 的内容位于文档其余部分的前面。使用 backgroundsetup 可以实现这一点吗?还是我需要使用其他包?

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{background}
\usepackage{tikz}


\backgroundsetup{
    scale=1,
    color=black,
    opacity=1,
    angle=0,
    position=current page.center,
    vshift=0cm,
    contents={
        Some text that should be over the rectangle
    }
}
\begin{document}
\begin{tikzpicture}
    \draw[fill=blue] (0,0) rectangle (10,10);
\end{tikzpicture}

\end{document}

相关内容