I try to include a 'Watermark' in some documents. To achieve that I use eso-pic and tikz. The problem is, that I don't get transparancy in one-paged documents. As soon as the document has more than one page everything is fine.
My MWE demonstrates that. Uncomment %\newpage and the background is transparent (even on page 1).
What is wrong with my code? What do I have to change to achieve a transparent background even on one-page documents?
\documentclass{article}
\usepackage{eso-pic}
\usepackage{tikz}
\ClearShipoutPicture
\AddToShipoutPicture{
\begin{tikzpicture}[remember picture, overlay, opacity=0.08]%
\node [rotate=60,scale=10,text opacity=0.2] at (current page.center) {Example};
\end{tikzpicture}
}
\begin{document}
\null
%\newpage
\end{document}

\newpagedoesn't add a page, the resulting pdf still is a one page document. So if\newpageat the end helps, why don't you use it? Btw: perhaps your problem is related to this one: tex.stackexchange.com/questions/32184/…. – Ulrike Fischer Feb 2 '12 at 11:37