Graphics, Figures & Tables ⇒ Beamer: image under text
-
- Posts: 52
- Joined: Sat Jun 07, 2008 11:56 am
Beamer: image under text
How can I include an image in my beamer slide so that it is under the text? I want it at the bottom of the page, but I don't want it to affect the position of the text at all.
Thanks,
Rich
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Beamer: image under text
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 52
- Joined: Sat Jun 07, 2008 11:56 am
Beamer: image under text
The logo thing puts the image on all pages. I only want the image on one frame. The closes I can get is using the textpos package (or using this command:
Code: Select all
\newcommand{\putat}[3]{\begin{picture}(0,0)(0,0)\put(#1,#2){#3}\end{picture}}
But both of those solutions put the image over the text. I can't find a way to have them under the text (but still visible)
-
- Posts: 52
- Joined: Sat Jun 07, 2008 11:56 am
Beamer: image under text
Code: Select all
\putat{-100}{-150}{\includegraphics[scale=0.6]{graphics/WiFi.pdf}}
Code: Select all
\putat{-100}{-70}{hello there!}
Cheers!
Rich