-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathresume.tex
66 lines (47 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
% general sample of a resume
% works with the resume document class (resume.cls)
%%% DOCUMENT TYPE
\documentclass[margin]{resume}
\textwidth=5.2in
%%% TITLE INFO
\begin{document}
\name{\Large{Sean P. McKenna}\\[12pt]}
%%% CONTACT INFORMATION
\address{EMAIL ADDRESS \\ PHONE \#}
\address{HOME ADDRESS \\ CITY, STATE ZIP}
%%% BEGIN RESUME
\begin{resume}
%%% OBJECTIVE (dependent on your goals)
\section{Objective}
To get a job
%%% EDUCATION
\section{Education}
{\bf COLLEGE,} CITY, STATE \\
B.A. in Something \\
Graduate Someday\\
GPA: 4.00
%%% EXPERIENCE
\section{Experience}
{\bf Some Job,} Some Where \hfill 01/12 - 12/12
\begin{itemize} \itemsep -2pt
\item what did you do?
\item how did you do it?
\item why was this job important?
\end{itemize}
%%% ACTIVITIES
\section{Activities}
{\bf Member,} Some Group, Location \hfill Spring 2012 - Winter 2012 \\
{\bf Member,} Another Group, Another Location \hfill Spring 2012 - Present
%%% ACADEMIC HONORS
\section{Academic \\ Honors}
Some Award: From Some Place \\
Another Award: From Another Place
%%% COMPUTER SKILLS
\section{Computer \\ Skills}
\begin{tabular}{l p{3in}}
\underline{Operating Systems:} & Windows, Mac, Linux \\ \\
\underline{Languages:} & \LaTeX \\ \\
\underline{Software:} & Microsoft Office, LibreOffice, Google Drive \\
\end{tabular}
\end{resume}
\end{document}