Skip to content

quinnouyang/emuser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

emuser: a painless LaTeX resume template

Yes, it's a play on Erewhon.

Emuser template Your resume could look like this! See the PDF.

Get Started

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.

Main Header

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]}

Main header of "First Last" with phone number and email

Section Lists

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}

Section list of "Title" with "Item 1" and "Item 2"

Section Items

For showing individual experiences, projects, etc., section items are usually an item in a sectionList.

Headers

  • lr is a left-right table, requiring 2-6 values via 2 {} and 0-4 [] (order matters). E.g.

    \lr{Project}{Dates}

    Left-right table of "Project" and "Dates"

    \lr{Company}{Location}  % Top-right value is italicized
    [Position][Dates]

    Left-right table of "Company" and "Location" with "Position" and "Dates

    \lr{University}{}  % Omits location
    [Degree 2][Dates]
    [Degree 1][Dates]

    Left-right table of "University" with "Degree 2," "Degree 1," and two "Dates"

  • Alternatively, lcr is a left-center-right table, requring 3 values. E.g.

    \lcr{Company}{Position}{Dates}

    Left-center-right table of "Company," "Position," and "Dates"

Lists

For detailing individual experiences, summarizing skills, etc.: bullets and nobullets.

  • bullets take the default set by setBulletStyle. E.g.

    \setBulletStyle{$\sharp$}
    
    \begin{bullets}
        \item I'm a musician!
        \item These bullets are too fancy.
    \end{bullets}

    Bulleted list of two sharp bullets

  • Reserve nobullets for single-line project details, single-item sectionLists, etc. E.g.

    \begin{sectionList}{Skills}
        \item \begin{nobullets}
            \item Skill issue
        \end{nobullets}
    \end{sectionList}

    Section list of "Skills" with "Skill issue"

  • labeled is usually an item in a nobullets, requiring 2 values. E.g.

    \labeled{Label}{Content}

    Labeled item of "Label" with "Content

Spacing

LaTeX automatically handles most spacing, but there are two parameters for you to adjust so your resume fits one page:

  • setBulletsSpacing affects items in bullets and nobullets
  • setSectionSpacing affects titles and items in sectionList

If that's not enough, adjust the global font size via documentclass and margins via geometry.

About

a painless LaTeX resume template

Topics

Resources

License

Stars

Watchers

Forks

Languages