Graphics, Figures & Tables ⇒ moderncv | Add a Photo to a CV
moderncv | Add a Photo to a CV
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
moderncv | Add a Photo to a CV
welcome to the board!
Since you are new to LaTeX, I recommend reading a LaTeX introduction, since you have very basic questions.
Regarding the photo, you can use PNG and JPEG format, with pdfLaTeX. Additionally PDF images and EPS images (in DVI mode) would be possible. The size doesn't matter much, as long as it looks good and the file size is not too big to handle for the final PDF.
Generally, for including a photo, you need to load the graphicx package and use the command
\includegraphics
.However, the moderncv class provides a special command for it:
Code: Select all
\photo[64pt][0.4pt]{filename}
64pt
is the height the picture (to which it's resized), 0.4pt
is the thickness of the frame around it. Use 0pt
for no frame.Stefan
Re: moderncv | Add a Photo to a CV
Re: moderncv | Add a Photo to a CV
