[Tex/LaTex] Draftwatermark with inserted PDF

draftwatermarkpdfpageswatermark

I have included a watermark (using \usepackage{draftwatermark}) for draft copies of my document, several pages of which are inserted from a PDF. The watermark behaves just fine on most pages – the watermark is obscured by text and inline images, as expected/desired – but on the inserted PDF, the watermark obscures the data.

Is this just due to how Latex inserts PDFs? Is there a way to make the inserted PDF show above the draftwatermark?

Best Answer

I achieved this by replacing this:

\usepackage{draftwatermark}
\SetWatermarkLightness{0.93}

With this:

\AddToShipoutPicture{%
    \AtTextCenter{%
        \makebox[0pt]{%
            \scalebox{14}{%
                \rotatebox[origin=c]{45}{%
                    \color[gray]{.93}\normalfont DRAFT}}}}}

Which I found on a forum post.

Now the words "DRAFT" appear behind the text in inserted PDF pages, so you can properly read the text of the inserted PDF.

Related Question