[Tex/LaTex] Image like watermark

graphicswatermark

Is there any package to insert an image (like a watermark) giving the X and Y coordinates, although then goes over the text?

Best Answer

I used the background package to watermark versions of a document with \today. It uses tikz nodes which allows a lot of customizations but has useful default values so you don't have to care:

MWE:

\documentclass{article}
\usepackage{lipsum}

\usepackage{graphicx}
\usepackage{background}
\backgroundsetup{contents={\includegraphics[scale=0.4]{cc.png}}}

\begin{document}
\lipsum[1-3]
\end{document}

enter image description here

Related Question