Graphics, Figures & TablesInclude Picture Manually

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Lisa1234
Posts: 2
Joined: Thu May 09, 2013 1:29 pm

Include Picture Manually

Post by Lisa1234 »

Hello,

I have a question about including a picture and I cant find any information about it...:(
I am using "moderncv" but the picture is not put in the right place. So I want to put it manually in the top left corner, about 5cm from left, and 5cm from top. How can I do that? Is that even possible?

Thank you for your help:)
Greets
Lisa

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

Lisa1234
Posts: 2
Joined: Thu May 09, 2013 1:29 pm

Include Picture Manually

Post by Lisa1234 »

After long time I did:

Code: Select all

\usepackage{ graphicx}
\usepackage{eso-pic}


\newcommand\BackgroundPic{
\put(99,325){
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\includegraphics[scale=0.07]{lisa}%
\vfill
}}}
and in Text:

Code: Select all

\AddToShipoutPicture*{\BackgroundPic}
It works, however I would prefer the picture to be on top of everthing, not in the background...but one cannot have everything
Last edited by cgnieder on Thu May 09, 2013 10:37 pm, edited 1 time in total.
Post Reply