Curricula Vitae / RésumésHow do I add an image?

ModernCV, Friggeri, Plasmati, Classicthesis-CV, and more
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

How do I add an image?

Post by templateuser »

Thanks for this great template. I have one question, how can I add an image? I’d put it in the right top corner, or does anyone think it shouldn’t be there?

Thanks a lot

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

How do I add an image?

Post by Vel »

Hi Daniel,

You can add an image as usual in LaTeX with:

\includegraphics{filename.jpg}

after adding

\usepackage{graphicx}

to the preamble. To put it in the top right corner I would recommend you subdivide the Personal Information section into two (using either a table or box) and put the image in the right cell/box. You can find examples of how to do this in other templates or elsewhere online.

Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

How do I add an image?

Post by templateuser »

Hi Vel,

Thank you very much for your advice. I solved the problem a little bit different though. I added \usepackage{tikz} and then

Code: Select all

\begin{tikzpicture}[remember picture, overlay]
\node [anchor=north east, inner sep=10pt] at (current page.north east)
{\includegraphics[height=6cm]{image.jpg}};
\end{tikzpicture}
solved the problem. I hope this can help others with the same issue.

Cheers,

Daniel
Post Reply