Curricula Vitae / Résumés ⇒ How do I add an image?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I add an image?
Thanks a lot
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
How do I add an image?
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
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I add an image?
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