Skip to content

Instantly share code, notes, and snippets.

@werebus
Last active September 30, 2015 15:47
Show Gist options
  • Save werebus/1819090 to your computer and use it in GitHub Desktop.
Save werebus/1819090 to your computer and use it in GitHub Desktop.
Resume LaTeX layout
% resume.tex
%
% Layout (c) 2007-2011 Jeremy B. R. Edberg <[email protected]> http://www.jedberg.net
%
%%%%%%%%%%%%
% Variables, fill these in:
\newcommand{\resumeauthor}{Your Full Name}
\newcommand{\resumeemail}{[email protected]}
\newcommand{\resumephone}{Mobile: 812-555-1234}
% Optional, you can leave it out if you want
%\newcommand{\resumeaddress}{123 Sesame St, New York, New York}
%%%%%%%%%%%%
%%%%%%%%%%%%
% Basic setup
\documentclass[11pt]{article}
\usepackage{fullpage}
\usepackage{microtype}
\usepackage{parskip}
\usepackage{setspace}
\pagestyle{empty}
\setlength{\tabcolsep}{0in}
\usepackage{geometry}
\geometry{letterpaper, twoside=false}
\setstretch{1}
\usepackage{booktabs}
\usepackage{topcapt}
\usepackage{tabulary}
\usepackage{hyphenat}
\usepackage{enumitem}
%%%%%%%%%%%%
%%%%%%%%%%%%
% PDF setup
\usepackage{ifpdf}
\ifpdf
\usepackage[pdftex]{hyperref}
\else
\usepackage[hypertex]{hyperref}
\fi
\hypersetup{
letterpaper,
colorlinks,
urlcolor=black,
pdfpagemode=none,
pdftitle={Resume},
pdfauthor={\resumeauthor},
pdfsubject={Resume},
pdfkeywords={}
}
%%%%%%%%%%%%
%%%%%%%%%%%%
% Margin setup
\geometry{hcentering, textwidth=7.2in}
\headheight -0.5in
\topmargin 0.0in
\textheight=10.7in
\setlist[itemize]{itemsep=-1ex,rightmargin=3em}
%\footheight 1.0in
%%%%%%%%%%%%
%%%%%%%%%%%%
% Section commands
\newcommand{\resumesection}[1]{
\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}}
\large{\sc{#1}}\\
\hline
\end{tabular*}
}
\newenvironment{resumesubhead}[2]{
\begin{tabular*}{\textwidth}{>{\em}l@{\extracolsep{\fill}}>{\em}r}
\textbf{\em #1} & {\em #2} \\
}{
\end{tabular*}
}
%%%%%%%%%%%%
\begin{document}
%% Heading
\begin{center}
{ \huge \textbf{\sc{\resumeauthor}} }
\ifdefined \resumeaddress
\mbox{\resumeaddress}
\fi
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}lr}
\resumeemail & \resumephone\\
\hline\hline
\end{tabular*}
\end{center}
%% Body
\resumesection{Example Section}
\begin{resumesubhead}{Example Employer}{Anytown, USA}
Super Duper Position & January 2009 -- February 2010\\
Even Better Promotion & February 2010 -- present\\
\end{resumesubhead}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed lorem sapien.
Aliquam tristique tortor in metus tincidunt commodo. Nunc varius velit eu nisi
tempor eu ultricies urna laoreet. Duis fringilla diam id urna faucibus
consequat. Sed laoreet volutpat iaculis. Curabitur augue dui, placerat a
hendrerit porttitor, vestibulum vel metus. Ut sagittis nibh eget arcu
vestibulum et pellentesque purus placerat.
\begin{itemize}
\item Here are
\item Some of my
\item Job duities
\end{itemize}
\end{document}
% vim: textwidth=78:wrap:wrapmargin=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment