Yes, it's a play on Erewhon.
Your resume could look like this! See the PDF.
Clone this repoistory or open this Overleaf template!
You need both emuser.tex
and emuserutils.sty
in the same directory level, but you only need to edit emuser.tex
. Only touch emuserutils.sty
if you're unsatisfied with the default options and are feeling dangerous.
For your name and contact information, lrHeader
is a left-right table requiring 2 values. E.g.
\lrHeader
{First Last}
{(012) 345-6789 $\vert$ [email protected]}
For organizing your education, experience, etc., sectionList
is a title with items. E.g.
\begin{sectionList}{Title}
\item \lr{Item 1}{}
\item \lr{Item 2}{}
\end{sectionList}
For showing individual experiences, projects, etc., section items are usually an item
in a sectionList
.
-
lr
is a left-right table, requiring 2-6 values via 2{}
and 0-4[]
(order matters). E.g.\lr{Project}{Dates}
\lr{Company}{Location} % Top-right value is italicized [Position][Dates]
\lr{University}{} % Omits location [Degree 2][Dates] [Degree 1][Dates]
-
Alternatively,
lcr
is a left-center-right table, requring 3 values. E.g.\lcr{Company}{Position}{Dates}
For detailing individual experiences, summarizing skills, etc.: bullets
and nobullets
.
-
bullets
take the default set bysetBulletStyle
. E.g.\setBulletStyle{$\sharp$} \begin{bullets} \item I'm a musician! \item These bullets are too fancy. \end{bullets}
-
Reserve
nobullets
for single-line project details, single-itemsectionList
s, etc. E.g.\begin{sectionList}{Skills} \item \begin{nobullets} \item Skill issue \end{nobullets} \end{sectionList}
-
labeled
is usually anitem
in anobullets
, requiring 2 values. E.g.\labeled{Label}{Content}
LaTeX automatically handles most spacing, but there are two parameters for you to adjust so your resume fits one page:
setBulletsSpacing
affects items inbullets
andnobullets
setSectionSpacing
affects titles and items insectionList
If that's not enough, adjust the global font size via documentclass
and margins via geometry
.