% Copyright 2019 Matthew Felix Yuan
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status `maintained'.
%
% The Current Maintainer of this work is Matthew Felix Yuan.
%
% This work consists of the files blank-template.tex and sample-resume.tex.
\documentclass[11pt]{article}
% helpful packages.
\usepackage{geometry}
\usepackage{indentfirst}
\usepackage{enumitem}
% global formatting tweaks.
\pagestyle{empty}
\geometry{margin=0.5in}
\setlength\parindent{9pt}
\setlist{nosep}
\renewcommand\labelitemi{--}
% new commands!
\newcommand{\name}[1]{\begin{center}\section*{\huge #1}\end{center}}
\newcommand{\topinfo}[1]{\begin{center}\vspace{-0.2cm}#1\vspace{-0.2cm}\end{center}}
\newcommand{\resumesection}[1]{\vspace{-0.2cm}\section*{#1}\vspace{-0.2cm}\hrule\vspace{0.2cm}}
\begin{document}
% \name is self-explanatory. \topinfo is for things like social media, email, phone number, address, etc.
\name{Your Name}
\topinfo{linkedin.com/me}
\topinfo{my@email.com}
\topinfo{867-5309}
% name your resume sections whatever you want!
\resumesection{Section}
% things written after \hfill will be right-aligned, which is where i usually put dates.
\textbf{Thing}, other info \hfill Start Date--End Date
% each \item is a point you want to say about the thing.
\begin{itemize}
\item Description of thing.
\item More description of thing.
\end{itemize}
% fill your sections with things!
\textbf{Thing}, other info \hfill Start Date--End Date
\begin{itemize}
\item Description of thing.
\item More description of thing.
\end{itemize}
% fill your resume with sections!
\resumesection{Section}
\textbf{Thing}, other info \hfill Start Date--End Date
\begin{itemize}
\item Description of thing.
\item More description of thing.
\end{itemize}
\textbf{Thing}, other info \hfill Start Date--End Date
\begin{itemize}
\item Description of thing.
\item More description of thing.
\end{itemize}
\end{document}