[Tex/LaTex] Creating a Resume Header

cv

I would like to recreate this résumé header in LaTeX. I'm having quite a bit of trouble with it. I'm a bit of a LaTeX novice.

Resume Header:
http://i.stack.imgur.com/nEgS5.png

Best Answer

The memoir class provides a good method of creating a custom header with three parts. As set up here, the header will appear on every page as a custom letterhead. The technique is explained in the comments below.

    \documentclass[12pt, oneside]{memoir}

    % Select a font package here (any TeX engine), or use fontspec with LuaLaTex or XeLaTeX
    % If it has to look like Times New Roman, \usepackage{tgtermes} instead 
    \usepackage{lmodern} 

    % Set dimensions of text block for memoir
    % For example, 1-inch margins on letter-size paper, with extra on top for header
    \settypeblocksize{9in}{6.5in}{*}
    \setlrmarginsandblock{1in}{1in}{*}
    \setulmarginsandblock{1.5in}{1in}{*}
    % Set header and footer size
    \setheadfoot{4\baselineskip}{\baselineskip}
    \checkandfixthelayout

    % Create a custom header for every page:
    % The three parameters of \makeoddhead{headers} define the left, center, and right parts of the header.
    % We use macros for the data and then fill them in below.
    % Use any formating commands within each bracketed parameter.
    \copypagestyle{headers}{plain}
    \makeoddhead{headers}
        %left side
        {\currentAddress}
        % center
        {{\Large\bfseries\name}\\ \vspace{0.5em} {\footnotesize\email \\ \phone }}
        % right side
        {\permanentAddress}
    % A horizontal rule beneath the header looks nice
    \makeheadrule{headers}{\textwidth}{\normalrulethickness}
    % Activate your custom header
    \pagestyle{headers}

    % Now supply the information to be put into the header above: This makes it easier to change
    \newcommand{\name}{LaTeX User}
    \newcommand{\currentAddress}{123 Main St.\\ Current City, State 12345}
    \newcommand{\permanentAddress}{321 Main St.\\ Permanent City, State 54321}
    \newcommand{\email}{mwe@example.com}
    \newcommand{\phone}{(123) 456-7890}

    \begin{document}
    %********************

    % Here is one basic way to format CV information 
    \section*{Information}

    \begin{itemize}
        \item{Fact 1}
        \item{Fact 2}
    \end{itemize}

    %*******************
    \end{document}

enter image description here