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}}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
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

Code, edit and compile here:
\usebackgroundtemplate{%
\rule{0pt}{\paperheight}%
\hspace*{\paperwidth}%
\makebox[0pt][r]{\includegraphics[width=60mm]{filename.png}}}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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