summaryrefslogtreecommitdiff
path: root/resume/resume.tex
blob: 7d72c3c75fe9f0b04f5d376ec85cba0d46b553d6 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
\documentclass[english]{article}
\usepackage{titling}
\author{Your Name} %Fill in your name here
\title{Resume -- \theauthor} 
\date{\today} %Automatically dates the document

\input{packages} 
\input{commands}

%edit the commands file to select the 3 options you'd like in the top bar
\newcommand{\email}{your.email@email.com}
\newcommand{\phone}{+1(111)111-1111}
\newcommand{\linkedin}{your-linkedin-slug} %slug (the last part) for url
\newcommand{\website}{yourwebsiteontheweb.com}
\newcommand{\location}{City, ST}

\hypersetup{
colorlinks=true, %"false" disables link colors
linkcolor=black, %links elsewhere in document
filecolor=black, %color for links to files
urlcolor=black, %color for hyperlinked urls 
pdftitle={\thetitle}, %Populates "title" metadata field
pdfauthor={\theauthor}, %Populates "author" metadata field
pdfsubject={Resume/CV for \theauthor}, %Populates "subject" metadata
pdfkeywords={resume, cv}, %Populates PDF keyword metadata, change these for relevant keywords in job postings, separated with commas
}


\begin{document}
\sffamily %San serif font. Comment out for serif font
\maketitle


\section{Objective}

\objective{
This is a place for an objective statement.
If you want an objective statement, you can add it here.
If you don't want an objective statement, you can comment out or delete the relevant lines in the source file.
Otherwise, put three to four nice sentences about yourself in this space.
}


\section{Education}

\entry
{Name of Degree}{Start Date -- End Date}
{Name of University}{City, ST}
{\nothing}

\entry
{Name of Degree}{Start Date -- End Date}
{Name of University}{City, ST}
{
\begin{itemize}
\item You can put courses here if you want
\item Another course
\item Use "\textbackslash nothing" command (seen above) to leave this field blank
\end{itemize}
}


\section{Experience}

\entry
{Name of Role}{Start Date -- End Date}
{Name of Company}{City, ST}
{
\begin{itemize}
\item An amazing thing you did
\item Another amazing thing you did
\item More amazing stuff
\end{itemize}
}

\entry
{Name of Role}{Start Date -- End Date}
{Name of Company}{City, ST}
{
\begin{itemize}
\item An amazing thing you did
\item Another amazing thing you did
\item More amazing stuff
\end{itemize}
}


\section{Projects}

\entry
{Name of Project}{Start Date -- End Date}
{Describe project}{\href{link_to_project.com}{website link or City, ST}}
{
Describe the project in a paragraph if you'd like.
Say some nice things about it.
Maybe highlight some of the tools you used below.
\textbf{Tools Used:} Software, Hardware, other tools
}


\section{Skills}

\begin{tabular}{ll}
\textbf{Programming Languages} & Example, example, example, example \\
\textbf{Markup Languages} & Example, example, example, example \\
\textbf{Graphic Design} & Example, example, example 
\end{tabular}

\end{document}