[Tex/LaTex] CV Style and Layout

moderncv

Can anyone tell me which syle the following CV is compiled from?

http://www.cns.nyu.edu/~umesh/bio/rajashekarCV.pdf

Best Answer

This is a duplication using the article class and some formatting:

enter image description here

\documentclass{article}
\usepackage[margin=0.5in,includefoot]{geometry}% http://ctan.org/pkg/geometry
\usepackage{enumitem,fancyhdr,colortbl}% http://ctan.org/pkg/{enumitem,fancyhdr,colortbl}
\usepackage{lastpage,lmodern,xcolor}% http://ctan.org/pkg/{lastpage,lmodern,xcolor}
\renewcommand{\section}[1]{%
  \begin{tabular}{p{\dimexpr\linewidth-2\tabcolsep}}
    \cellcolor{black!10}\large\strut #1
  \end{tabular}%
}
\newcommand{\heading}[2][\relax]{\textbf{#2}\hfill#1\par\nobreak}
\newcommand{\pubheading}[1]{\par\bigskip\underline{\textbf{#1}}\par}
\newlist{subitems}{itemize}{1}
\setlist[subitems]{label={--},nosep}
\newlist{myreferences}{enumerate}{1}
\setlist[myreferences]{label={[\arabic*]},leftmargin=*}

\let\rmdefault\sfdefault% Default is sans serif
\setlength{\parindent}{0pt}% No indent
\pagestyle{fancy}% Fancy page styl
\fancyhf{}% Clear header/footer
\renewcommand{\headrulewidth}{0pt}% No header rule
\renewcommand{\footrulewidth}{.4pt}% Footer rule
\fancyfoot[L]{Curriculum Vitae - My Name}% Left footer
\fancyfoot[R]{\thepage{} of \pageref{LastPage}}% Right footer
\begin{document}
% Header
\begin{tabular}{@{}p{\linewidth}@{}}
  \centering\LARGE My Name \\
  \centering\large \strut Curriculum Vitae \\[\jot]
  \hrule \mbox{}\\[\dimexpr-.4pt+\jot]
  \small My Address \hfill my@email.address \\
  \small My phone number \hfill http://my.website.url
\end{tabular}

\renewcommand{\arraystretch}{1.5}% Spread titles out a tad...

\section{Education}

\begin{itemize}
  \item \heading[Dec~2005]{My PhD in Something or Another}
    The University of You Know Who, Here, THERE
    \begin{subitems}
      \item Dissertation title: \textit{Amazing things that one can do during procrastination (revisited)}
    \end{subitems}

  \item \heading[Aug~2000]{My MSc in Something or Another}
    The University of You Know Who, Here, THERE
    \begin{subitems}
      \item Thesis title: \textit{Amazing things that one can do during procrastination}
    \end{subitems}
\end{itemize}

\section{Work Experience}

\begin{itemize}
  \item \heading[Aug~2006 - present]{Sit-around-er}
    My home
    \begin{subitems}
      \item Watching television
      \item Sleep
      \item Eat
    \end{subitems}

  \item \heading[Jan~2006 - Jul~2006]{Assistant to the assistant regional manager}
    Dunder Mifflin
    \begin{subitems}
      \item Do as I am told
      \item Always at the ready
    \end{subitems}
\end{itemize}

\section{Publications}

\pubheading{Journal Articles}

\begin{myreferences}
  \item First item, Some title that is very long and spans more than a single line, 
    Chapter 1--10, pages 123--456, Academic Press, 2nd edition, 2009.

  \item Second item, Some title that is very long and spans more than a single line, 
    Chapter 1--10, pages 123--456, Academic Press, 2nd edition, 2009.
\end{myreferences}

\end{document}