水印替代品

水印替代品

有没有水印的替代品,即一些看起来很漂亮的东西覆盖在文本之上,但例如像图章或封条一样?

答案1

由于已经background是一个TikZ包,因此 TikZ 可以实现的任何功能也可以实现background

这只是一个例子

\documentclass{article}


\usepackage{background}
\usetikzlibrary{shadings}

\DeclareRobustCommand{\bgcontentsstuff}{%
  \begin{tikzpicture}
    \shade[ball color=red] (-0.5\textwidth,-0.5\textheight) rectangle(0.5\textwidth,0.5\textheight+1em);
  \end{tikzpicture}%
}

\usepackage{blindtext}

\begin{document}
\backgroundsetup{contents={\bgcontentsstuff},scale=1,angle=0}
\blindtext[10]
\end{document}

在此处输入图片描述

相关内容