Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cprussin/resume
LaTeX resume class
https://github.com/cprussin/resume
Last synced: about 1 month ago
JSON representation
LaTeX resume class
- Host: GitHub
- URL: https://github.com/cprussin/resume
- Owner: cprussin
- Created: 2014-06-17T19:55:37.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-11-16T23:38:39.000Z (about 4 years ago)
- Last Synced: 2023-08-30T14:48:16.756Z (over 1 year ago)
- Language: TeX
- Size: 14.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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{}{}
```