background
包在前言中定义了一个具有绝对位置的背景,但如何在不同位置设置两个独立的背景?假设我们有两个背景
\SetBgColor{red}
\SetBgPosition{0,0}
\SetBgContents{content1}
\SetBgColor{blue}
\SetBgPosition{1cm,5cm}
\SetBgContents{content2}
答案1
背景材料可以是任何东西;具体来说,它可以是一个tikzpicture
环境,并且在这个环境中,您可以使用两个独立的\node
来放置您的材料:
\documentclass{article}
\usepackage{background}
\usepackage{lipsum}
\SetBgAngle{0}
\SetBgScale{3}
\SetBgOpacity{1}
\SetBgContents{%
\begin{tikzpicture}[remember picture,overlay]
\node[text=red] at (0,0) {content1};
\node[text=blue] at (2,-2) {content2};
\end{tikzpicture}}
\begin{document}
\lipsum[1-10]
\end{document}