[Tex/LaTex] put images report on every page at absolute position

everypagefloatssidewaysfigure

I'd like to have one specific image at the top left corner and another in the top right one. I tried doing this vith \lhead and \rhead, but it didn't position the images in the corners of the pages, but just above the text block.

The images are supposed to be in the corner of the entire page on every page.

Is there a way doing it?

Best Answer

You could use background for this:

\documentclass{article}
\usepackage{background}
\usepackage{graphicx}
\usepackage{lipsum}

\backgroundsetup{
   scale=1,
   angle=0,
   opacity=1,
   color=black,
   contents={\begin{tikzpicture}[remember picture, overlay]
      \node at ([xshift=-2cm,yshift=-2cm] current page.north east)
            {\includegraphics[width = 3cm]{lion}} %
       node at ([xshift=2cm,yshift=-2cm] current page.north west)
            {\includegraphics[width = 3cm]{lion}}; %<- change the name of image
     \end{tikzpicture}}
 }
 \begin{document}

 \lipsum[1-7]

 \end{document}

enter image description here