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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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