1

Possible Duplicate:
How do I add an image in the upper, left-hand corner using TikZ and graphicx

I would like to place a small image in the bottom left hand corner of every page of my document. The image is in .jpg format. The snag is that I am not allowed to install extra packages to latex at work.

Can I do this by redefining a new page style, and writing the commands to do this in the preamble?

Phil
  • 11

1 Answers1

3

You can do it with eso pic

I think this code should work, put it in the preamble

\usepackage{eso-pic}
\EveryShipout{
\AddToShipoutPicture*{
     \put(0,0){\includegraphics{image.png}}
}