deedy / Deedy-Resume

A one page , two asymmetric column resume template in XeTeX that caters to an undergraduate Computer Science student

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Include profile picture

magnusmetz opened this issue · comments

Thanks for this template. It almost completely meets my requirements. As I am from Germany I would like to add a profile picture in the CV. Any clue, how to solve that problem?

Thanks in advance for an answer.

Yours,
Magnus

commented

I would like to add a profile picture in the CV too, how to solve that problem? Thanks for this template.

The template currently does not support profile pictures.

For anyone with the same issue, use this:

\usepackage{tikzpagenodes}

\begin{document}

\begin{tikzpicture}[remember picture,overlay,shift={(current page.north west)}]
\node[anchor=north west,xshift=1.75cm,yshift=-0.25cm]{\includegraphics[width=2.5cm]{Picture.jpeg}};
\end{tikzpicture}

\end{document}

It will insert your picture in the top left corner next to your name.

@Maxinho96 Thank you so much! This worked like a charm!