项目作者: Awjin

项目描述 :
Pro, yet fresh
高级语言: TeX
项目地址: git://github.com/Awjin/pro-fresh-resume.git
创建时间: 2015-01-14T23:24:17Z
项目社区:https://github.com/Awjin/pro-fresh-resume

开源协议:

下载


A LaTex Resumé Template

Resume sample

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.

  1. \header{name}{email}{phone}

Section

Use these to organize the body.

  1. \section{Education}
  2. \section{Employment}

Entry

Fields 1 and 2 are left-aligned, field 3 is right-aligned.

  1. \entry{1}{2}{3}

Note: These fields don’t all have to be populated, but require {} even when empty. For example:

  1. \entry{Job Title}{Company}{Dates}
  2. \entry{Job Title}{}{Dates}
  3. \entry{Job Title}{}{}

Detail

Use these to describe a section or entry.

  1. \section{}
  2. \detail{This is something I accomplished.}
  3. \entry{}{}{}
  4. \detail{This is another thing I accomplished.}

Starter Code

  1. \documentclass{my_cv}
  2. \begin{document}
  3. \header{}{}{}
  4. \section{}
  5. \entry{}{}{}
  6. \detail{}
  7. \end{document}