Skip to content

Instantly share code, notes, and snippets.

@tnewman
Created March 19, 2017 18:18
Show Gist options
  • Save tnewman/8deb835f7046cde7ba3ad1358c7a689b to your computer and use it in GitHub Desktop.
Save tnewman/8deb835f7046cde7ba3ad1358c7a689b to your computer and use it in GitHub Desktop.
Simple Resume Class for LaTeX
\ProvidesClass{SimpleResume}[2017/03/18 Simple Resume Class]
\LoadClass[11pt,letterpaper]{article}
\usepackage[letterpaper,margin=0.75in]{geometry}
\usepackage{enumitem}
\setlist{nolistsep}
\newcommand{\contact}[5]{
\centerline{\LARGE\textbf{#1}}
\centerline{#2 -- #3}
\centerline{#4 -- #5}
\vspace{0.75em}
}
\newcommand{\positiongroup}[1]{
\hrule
\vspace{0.75em}
{\noindent\Large\textbf{#1}}
\vspace{0.25em}
}
\newcommand{\position}[4]{
\noindent\textbf{#1}
\hfill
\textbf{#2}
\noindent\emph{#3}
\hfill
\emph{#4}
}
\newcommand{\spacedposition}[4]{
\position{#1}{#2}{#3}{#4}
\vspace{0.5em}
}
\newcommand{\positionwithpay}[6]{
\position{#1}{#2}{#3}{#4}
\noindent\emph{#5}
\hfill
\emph{#6}
}
\newcommand{\payhours}[2]{
}
\newenvironment{duties} {
\begin{itemize}
}
{\end{itemize}
\vspace{0.5em}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment