Graphics, Figures & Tablesbeamer | Background Image

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
the_blue_note
Posts: 15
Joined: Mon Oct 24, 2011 9:38 pm

beamer | Background Image

Post by the_blue_note »

Hello to all,

I finally finished writing my PhD (thanks a lot for all those who helped me!) and now is time to do the presentation :D . The thing is that I'm trying to use a watermark on the slides, and using this command before the \begin{document} makes the job:

Code: Select all

{ 
\usebackgroundtemplate 
{\includegraphics[width=60mm]{filename.png}}
}
However, it places the image top-left, and I need it bottom-right. Is there any way to do so?


Thanks a lot in advance. Cheers,
Pablo
Last edited by the_blue_note on Wed Jan 11, 2012 7:54 pm, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

beamer | Background Image

Post by Stefan Kottwitz »

Hi Pablo,

you could use atbegshi, everyshi, esopic, textpos or TikZ for placing the image. Or do it yourself, with an invisible rule and a box without width:

Code: Select all

\usebackgroundtemplate{%
  \rule{0pt}{\paperheight}%
  \hspace*{\paperwidth}%
  \makebox[0pt][r]{\includegraphics[width=60mm]{filename.png}}}
Stefan
LaTeX.org admin
the_blue_note
Posts: 15
Joined: Mon Oct 24, 2011 9:38 pm

Re: beamer | Background Image

Post by the_blue_note »

Stefan,
million thanks! (once again) It worked perfectly.
Cheers,
Pablo
Post Reply