Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 19 days 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 (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T01:14:40.000Z (almost 8 years ago)
- Last Synced: 2024-11-18T02:05:23.899Z (3 months ago)
- Topics: fresh, latex, latex-template, resume-template
- Language: TeX
- Homepage:
- Size: 757 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A LaTex Resumé Template
![Resume sample](https://github.com/Awjin/pro-fresh-resume/blob/master/sample.png)
## 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}
```