[Tex/LaTex] Add logo on each page.

graphicswatermark

I need to insert a logo on pdflatex supported format on the bottom right of each page.

Do you think it's possible?

Best Answer

You can use the package eso-pic.

\documentclass{article}
\usepackage{eso-pic,lipsum}
\AddToShipoutPictureBG{%
 \AtPageLowerLeft{\hspace{1cm}A small logo: \rule{2cm}{3cm}}}
\begin{document}
\lipsum
\end{document}

The above gives:

enter image description here

Related Question