Skip to content

Instantly share code, notes, and snippets.

@rishirdua
Created March 27, 2015 12:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishirdua/81c3ff3de192c5c591f6 to your computer and use it in GitHub Desktop.
Save rishirdua/81c3ff3de192c5c591f6 to your computer and use it in GitHub Desktop.
Latex resume template
\documentclass[letterpaper,11pt]{article}
%-----------------------------------------------------------
\usepackage{tabularx}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{multirow}
\usepackage[top=0.5in, bottom=0.5in, left=1in, right=1in]{geometry}
\usepackage[empty]{fullpage}
\usepackage[usenames,dvipsnames]{color}
\usepackage{verbatim}
\usepackage[pdftex]{hyperref}
\usepackage{xcolor}
\hypersetup{
colorlinks,%
citecolor=black,%
filecolor=black,%
linkcolor=black,%
urlcolor=black
%urlcolor=mygreylink % can put red here to better visualize the links
}
\urlstyle{same}
\definecolor{mygrey}{gray}{.87}
\definecolor{mygreylink}{gray}{.30}
\textheight=9.0in
\raggedbottom
\raggedright
\setlength{\tabcolsep}{0in}
% Adjust margins
\addtolength{\oddsidemargin}{-0.375in}
\addtolength{\evensidemargin}{0.375in}
\addtolength{\textwidth}{0.5in}
\addtolength{\topmargin}{-.375in}
\addtolength{\textheight}{0.75in}
%-----------------------------------------------------------
%Custom commands
\newcommand{\resitem}[1]{\item #1 \vspace{-2pt}}
\newcommand{\resheading}[1]{{\fontsize{1.2em}{1em} \colorbox{mygrey}{\begin{minipage}{\textwidth}{\textbf{\textcolor{black}{#1
\vphantom{p\^{E}}}}}\end{minipage}}}}
\newcommand{\ressubheading}[4]{
\begin{tabular*}{6.9in}{l@{\extracolsep{\fill}}r}
\textbf{#1} & #2 \\
{#3} & {#4} \\
\end{tabular*}\vspace{-6.8pt}}
\newcommand{\reprojheading}[3]{
\begin{tabular*}{6.58in}{l@{\extracolsep{\fill}}r}
\textbf{#1} #2& #3 \\
\end{tabular*}\vspace{-5pt}}
\begin{document}
\renewcommand{\familydefault}{\sfdefault}
\fontfamily{\sfdefault}
\selectfont
{\renewcommand{\arraystretch}{0.8}
\begin{tabular}{ p{0.70\linewidth} p{0.30\linewidth} }
\multirow{3}{*}{ \fontfamily{\sfdefault} \selectfont \Huge XYZ}
& \small \hfill {abc@def.com}\\
& \small \hfill {xyz}\\
& \small \hfill {xyz}\\
\end{tabular}
}
\vspace{-0.66em}%\resheading{Education}
\begin{itemize}[parsep=0.8pt, leftmargin=0.3em]
\item []
\ressubheading{University}{Grad date}
{Course, Dept}{xyz}
{
}
\end{itemize}
%%%%%%%%%%%%%%%%%%%%%%
\resheading{Work Experience}
\begin{itemize}[parsep=0.8pt]
\item
\reprojheading{Intern}{}{May 2014 -- Jul 2014}
{
\begin{itemize}
\resitem{did abc}
\resitem{did abc}
\resitem{did abc}
\end{itemize}
}
\item
\reprojheading{Intern}{}{May 2014 -- Jul 2014}
{
\begin{itemize}
\resitem{did abc}
\resitem{did abc}
\resitem{did abc}
\end{itemize}
}
\item
\reprojheading{Intern}{}{May 2014 -- Jul 2014}
{
\begin{itemize}
\resitem{did abc}
\resitem{did abc}
\resitem{did abc}
\end{itemize}
}
\end{itemize}
\resheading{Projects}
\begin{itemize}[parsep=0.8pt]
\item
\reprojheading{Intern}{}{May 2014 -- Jul 2014}
{
\begin{itemize}
\resitem{did abc}
\resitem{did abc}
\resitem{did abc}
\end{itemize}
}
\item
\reprojheading{Intern}{}{May 2014 -- Jul 2014}
{
\begin{itemize}
\resitem{did abc}
\resitem{did abc}
\resitem{did abc}
\end{itemize}
}
\item
\reprojheading{Intern}{}{May 2014 -- Jul 2014}
{
\begin{itemize}
\resitem{did abc}
\resitem{did abc}
\resitem{did abc}
\end{itemize}
}
% }
\end{itemize} % End Projects and Experience list
%%%%%%%%%%%%%%%%%%%%%%
\resheading{Programming Experience}
\begin {itemize}[parsep=0.8pt, itemsep=1pt]
\item Exp1
\item Exp1
\item Exp1
\item Exp1
\end{itemize}
\resheading{Scholastic Achievements and Awards}
\begin {itemize}[parsep=0.8pt, itemsep=1pt]
\item Exp1
\item Exp1
\item Exp1
\item Exp1
\item Exp1
\item Exp1
\item Exp1
\item Exp1
\end{itemize}
%%%%%%%%%%%%%%%%%%%%%%
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment