How can I put a tikzpicture on every page of a document?
Below is a minimal example with a watermark. It only appears on the
first page of course. I don't want to use the eso-pic package. A
solution based on "pgfpages" is mentioned on page 18 of the pgf
manual, but I couldn't figure out the details.
Cheers,
Marius
\documentclass[paper=a4,pagesize]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[american,ngerman]{babel}
\usepackage{blindtext}
\usepackage{tikz}
\usepackage{pgfpages}
\begin{document}
\begin{tikzpicture}[remember picture,overlay] \node
[rotate=60,scale=10,text opacity=0.2] at (current page.center)
{draft};
\end{tikzpicture}
\blindtext[10]
\end{document}