-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.tex
72 lines (31 loc) · 1.37 KB
/
resume.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
% LaTeX resume using res.cls
\documentclass{Dependencies/res}
\usepackage{hyperref}
%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent} % uses new century schoolbook postscript font
\setlength{\topmargin}{-0.6in} % Start text higher on the page
\setlength{\textheight}{9.8in} % increase textheight to fit more on a page
\setlength{\headsep}{0.2in} % space between header and text
\setlength{\headheight}{12pt} % make room for header
\usepackage{fancyhdr} % use fancyhdr package to get 2-line header
\renewcommand{\headrulewidth}{0pt} % suppress line drawn by default by fancyhdr
\lhead{\hspace*{-\sectionwidth}John Doe} % force lhead all the way left
\rhead{Page \thepage} % put page number at right
\cfoot{} % the footer is empty
\pagestyle{fancy} % set pagestyle for the document
\begin{document}
\thispagestyle{empty} % this page does not have a header
\name{John Doe}
\address{\textbf{Location:} My city, My state/province, My country}
\begin{resume}
\input{Sections/Misc/contacts.tex}
\input{Sections/education.tex}
\input{Sections/awards.tex}
\input{Sections/employment.tex}
\input{Sections/volunteering.tex}
\input{Sections/projects.tex}
\input{Sections/Misc/membership.tex}
\input{Sections/Misc/skills.tex}
\input{Sections/Misc/references.tex}
\end{resume}
\end{document}