>>Date: Tue, 20 Jun 2000 09:42:33 +0200
>>From: Riccardo Bronzini <[EMAIL PROTECTED]>
>>To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
>>Subject: logo
>>
>><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
>><html>
>>Hi all,
>><br>can anyone help me? I'm looking for a trick or the tex sequence, to
>>put at the end of each page a logo (a .eps fig), for example in the middle
>>near the page number. I know that should be very complicated, but a tex
>>solution will be welcomed.
>><br>Thanks.
>><p>Riccardo</html>
>>
In the preamble:
\usepackage{fancyhdr}
\newsavebox{\mylogo}
\savebox{\mylogo}{\includegraphics[width=<mysize>mm]{/usr/local/htdocs/logos/log
o}}
\cfoot{\rm\thepage~\usebox{\mylogo}}
Avoiding the .eps suffix allows to use pdflatex as well, with a pdf, jpg
or png version of the logo.
--
Jean-Pierre