Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cprussin/resume

LaTeX resume class
https://github.com/cprussin/resume

Last synced: about 1 month ago
JSON representation

LaTeX resume class

Awesome Lists containing this project

README

        

# [LaTeX Resume Class](https://connor.prussin.net/resume)

## Description

This is a LaTeX document class intended for use when writing resumes. It is
loosely based off parts of [the Resume class developed by
RPI](http://www.rpi.edu/dept/arc/training/latex/resumes/), but has been
rewritten from ground up. To keep the class file minimal, only one style is
supported---please see [my resume](https://connor.prussin.net/resume.pdf) for
an example of the produced format. The source of my resume is included in this
repository as an example.

## Usage

Instruct LaTeX to use the `resume` class in the preamble of your document:

```latex
\documentclass{resume}
```

### Letterhead

The letterhead provided by this document class prints the resume author's name,
a horizontal line, and two address sub-headers, one floated left and the other
floated right. To put a letterhead in your document, use the `letterhead`
command.

```latex
\letterhead{}{

}{
}
```

### Sections

Each section will generate a small-caps header in the left margin. Use
sections exactly as you would in any other LaTeX document:

```latex
\begin{section}{}
...
\end{section}
```

#### Experience

The `experience` macro produces a section with a header containing information
about the experience and a list of statements regarding the experience. The
`experience` macro is used as follows:

```latex
\begin{experience}{}{}{}{}
\item
...
\end{experience}
```

#### Projects

The `project` macro is similar to the `experience` macro, but it does not
expect a title or location. Use the `project` macro as follows:

```latex
\begin{project}{}{}{}
\item
...
\end{project}
```

#### Activities

The `activity` macro lists activities, positions held, and dates.

```latex
\activity{}{}{}
```

If no positions were held, use the macro as follows:

```latex
\activity{}{}{}
```

Note the inner `{}`.

#### Awards / Honors

The `award` macro is similar to the `activity` macro, but does not include an
argument for officer position.

```latex
\award{}{}
```