Curricula Vitae / Résumés ⇒ Adding an image to the header
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Adding an image to the header
Just changed the name to the right, and I want to put my picture in the left. The idea is that name and image stay at the same heigh so the interviewer can check both at a glance, we do like that in spain.
I've been trying to change it in the template but I didn't managed to make it. Could you help me please?
Thanks in advance,
Luis B.
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
Adding an image to the header
I've had a quick play with the TITLE block to do what you'd like. It's probably not the best way of doing it but it works and looks quite good, here's the code for your TITLE block:
Code: Select all
\begin{minipage}[t]{0.4\textwidth}
\vspace{-30pt} % Trick for alignment
\raggedleft\includegraphics[scale=0.3]{placeholder.jpg}
\end{minipage}
\begin{minipage}{0.3\textwidth}
\vspace{0pt} % Trick for alignment
\raggedleft{\sffamily\Huge John Smith}\\ % Your name
{\color{headings}\fontspec[Variant = 2]{Zapfino} Curriculum {Vit\fontspec[Variant = 3]{Zapfino}\ae}} % Curriculum vitae text in the Zapfino font
\end{minipage}
\vspace{20pt}
http://i.imgur.com/SA1hRlN.png
Cheers,
Vel