-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresume-commands.tex
103 lines (84 loc) · 2.66 KB
/
resume-commands.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
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
% Resume Commands
% Organized by abstraction level with more granular commands on top
% so that they can be used by the more general commands below
%==============================================================================
% Basic Details
%==============================================================================
\def \jabName {Joshua A. Brown}
\def \jabEmail {jbrown1.618@gmail.com}
\def \jabPhone {(860) 271--9092}
\def \jabGithub {github.com/jbrown1618}
\def \jabLinkedin {linkedin.com/in/jbrown1618}
% Utilities
%==============================================================================
\newcommand{\bulletedList}[1]{
\begin{itemize}[leftmargin=*] \itemsep -4pt
#1
\end{itemize}
}
\newcommand{\listWithTitle}[2]{
#1\\
\vspace{-16pt}
\bulletedList{#2}
\vspace{-2pt}
}
\newcommand*\headerRule[1]{\par\noindent\raisebox{.8ex}{\makebox[\linewidth]{\hrulefill\hspace{1ex}\raisebox{-.8ex}{#1}\hspace{1ex}\hrulefill}}}
\newcommand{\subheaderStyle}[1]{\textbf{#1}}
\newcommand{\dateStyle}[1]{\dotfill \textit{#1}}
% Experience Sections
%==============================================================================
% 1 (description/title), 2 (date range)
\newcommand{\company}[2]{
\textsc{\subheaderStyle{#1}}\dateStyle{#2}\vspace{-6pt}
}
% 1 (description/title)
\newcommand{\experienceHeader}[1]{
\subheaderStyle{#1}
}
% 1 (description/title), 2 (company/context), 3 (bulleted list of items)
\newcommand{\experience}[2]{
\listWithTitle{\experienceHeader{#1}}{#2}
}
% 1 (description), 2 (bulleted list of items)
\newcommand{\project}[2]{
\listWithTitle{\subheaderStyle{#1}}{#2}
}
\newcommand{\leadershipExperience}[3]{
\listWithTitle{\subheaderStyle{#1,} #2}{#3}
}
% 1 (list of \skillsCategories)
\newcommand{\skillsTable}[1]{
% We have to resort to manual spacing to make the whitespace around this table look good
\vspace{6pt}
\begin{tabularx}{\textwidth}{p{0.8in} X}
#1
\end{tabularx}
\vspace{-4pt}
}
% 1 (category), 2 (comma-delimited list of skills in that category)
\newcommand{\skillsCategory}[2]{
\textbf{#1:} & #2 \\[4pt]
}
% Large-scale structures
%==============================================================================
% 1 (section name), 2 (section contents)
\newcommand{\resumeSection}[2]{
\headerRule{\textbf{#1}}
\vspace{-2pt}
#2
\vspace{2pt}
}
% 1 (title), 2 (left header), 3 (right header)
\newcommand{\resumeHeader}[3]{
\begin{minipage}[t]{0.3\textwidth}
#2
\end{minipage}\begin{minipage}[t]{0.4\textwidth}
\begin{center}
{\Large \textbf{\textsc{#1}}}
\end{center}
\end{minipage}\begin{minipage}[t]{0.3\textwidth}
\begin{flushright}
#3
\end{flushright}
\end{minipage}
}