summaryrefslogtreecommitdiff
path: root/resume/resume.tex
blob: 2ab088cbabb63828aa724aaa42803c806e11cc4a (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
\documentclass[english]{article}
\usepackage{titling}
\title{Resume}
\author{Your Name}
\date{\today}

\input{packages}
\input{commands}

\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}

\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, separate with commas
}


\begin{document}
\sffamily %Set san serif font for body text
\maketitle


\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}