https://github.com/awjin/pro-fresh-resume
Pro, yet fresh
https://github.com/awjin/pro-fresh-resume
fresh latex latex-template resume-template
Last synced: 12 months ago
JSON representation
Pro, yet fresh
- Host: GitHub
- URL: https://github.com/awjin/pro-fresh-resume
- Owner: Awjin
- Created: 2015-01-14T23:24:17.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T01:14:40.000Z (about 9 years ago)
- Last Synced: 2025-03-12T10:46:01.403Z (about 1 year ago)
- Topics: fresh, latex, latex-template, resume-template
- Language: TeX
- Homepage:
- Size: 757 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A LaTex Resumé Template

## Usage
### Import the Class
Put `\documentclass{resume}` at the top of your tex file.
### Header
First field is large and left-aligned. Remaining entries are right-aligned.
```
\header{name}{email}{phone}
```
### Section
Use these to organize the body.
```
\section{Education}
\section{Employment}
```
### Entry
Fields 1 and 2 are left-aligned, field 3 is right-aligned.
```
\entry{1}{2}{3}
```
Note: These fields don't all have to be populated, but require `{}` even when empty. For example:
```
\entry{Job Title}{Company}{Dates}
\entry{Job Title}{}{Dates}
\entry{Job Title}{}{}
```
### Detail
Use these to describe a section or entry.
```
\section{}
\detail{This is something I accomplished.}
\entry{}{}{}
\detail{This is another thing I accomplished.}
```
### Starter Code
```
\documentclass{my_cv}
\begin{document}
\header{}{}{}
\section{}
\entry{}{}{}
\detail{}
\end{document}
```