I think the easiest would be in the top right corner. The CV template using a new command called makeheading to generate a heading from my name. I was thinking if there was a way to incorporate the photo above the line drawn with this heading, but on the right side of the page. Here is the code use to generate the heading:
Code: Select all
Code, edit and compile here:
% The title (name) with a horizontal rule under it%% Usage: \makeheading{name}%% Place at top of document. It should be the first thing.\newcommand{\makeheading}[1]%{\hspace*{-\marginparsep minus \marginparwidth}%\begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%{\large \bfseries #1}\\[-0.15\baselineskip]%\rule{\columnwidth}{1pt}%\end{minipage}}
Code: Select all
\begin{document}\makeheading{My Name}
Thanks.