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
Curricula Vitae / Résumés ⇒ How do I add an image?
How do I add an image?
Hi Daniel,
You can add an image as usual in LaTeX with:
after adding
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
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
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I add an image?
Hi Vel,
Thank you very much for your advice. I solved the problem a little bit different though. I added
solved the problem. I hope this can help others with the same issue.
Cheers,
Daniel
Thank you very much for your advice. I solved the problem a little bit different though. I added
\usepackage{tikz}
and thenCode: 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}
Cheers,
Daniel