[Tex/LaTex] Place logo on top of page next to edge

floats

Before anything, this question may have been asked already, but I can't find it.
I want to place a picture right on top of the page letting no white space between the top edge of the page and the top edge of the picture. I have already fitted the picture width to the paper width like this:

\makebox[\textwidth]{\includegraphics[width=\paperwidth]{mypicture}}

Thanks for all and sorry about my spelling.

Best Answer

I suggest you to use the eso-pic package:

\documentclass{scrartcl}
\usepackage{eso-pic}
\begin{document}

\AddToShipoutPicture*{\put(0,788){\rule{21cm}{2cm}}} 

Hello

\end{document}

You might need to play with the settings but basically this is one way to do it. To have the picture on each page just remove the '*'.

result

Related Question