28

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

Do you think it's possible?

Caramdir
  • 89,023
  • 26
  • 255
  • 291
pbneau
  • 401

3 Answers3

25

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

Janosh
  • 4,042
Ulrike Fischer
  • 327,261
24

You can easily set headers and footers using the fancyhdr package. Here's an example.

\documentclass{article}
\usepackage{fancyhdr}
\usepackage{lipsum}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{}
\lfoot{}
\cfoot{\thepage}
\rfoot{My Logo here!}
\renewcommand\headrulewidth{0pt}
\renewcommand\footrulewidth{0pt}
\begin{document}
\lipsum
\end{document}

giving:

enter image description here

Note that the lipsum package is just to get sample text, it's not part of the solution.

dardisco
  • 423
TH.
  • 62,639
15

Using the background package:

\documentclass{article}
\usepackage{background}
\usepackage{lipsum} % used to create the lipsum text

\backgroundsetup{
scale=1,
angle=0,
opacity=1,
color=black,
contents={\begin{tikzpicture}[remember picture,overlay]
\node at ([xshift=-1.2in,yshift=1.2in] current page.south east) % Adjust the position of the logo.
{\rule{2cm}{3cm}}; % logo goes here
\end{tikzpicture}}
}
\begin{document}

\lipsum[1-7]

\end{document}

enter image description here

azetina
  • 28,884