summaryrefslogtreecommitdiffstats
path: root/config/tex/sarah_resume.sty
blob: 2dadb30923a04b9f524e56a1b98e933fc9d64a41 (plain) (blame)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
% vim:foldmarker=<<<,>>>
% This work is licensed under the Creative Commons
% Attribution-NonCommercial-ShareAlike License. To view a copy of this license,
% visit http://creativecommons.org/licenses/by-nc-sa/1.0/ or send a letter to
% Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
% This file is adapted from Todd Courtesan's resume, at
% http://www.courtesan.com/todd/resume.html

% <<< packages
\RequirePackage{latexsym,amsmath,amssymb,charter,color,calc,jesse_macros}
\RequirePackage[empty]{fullpage}
% >>>
% <<< dimensions/margins
\setlength{\tabcolsep}{0in}
\addtolength{\oddsidemargin}{-0.25in}
\addtolength{\evensidemargin}{-0.25in}
\addtolength{\textwidth}{0.5in}
\addtolength{\topmargin}{-0.5in}
\addtolength{\textheight}{1in}
% >>>
% <<< other definitions
\definecolor{mygrey}{gray}{0.90}
% >>>
% <<< Custom commands
% <<< \resheader
\newcommand{\resheader}[5]{
    \raggedleft
    \begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}cr}
    #2 & \textbf{\LARGE #1} & #4\\
    #3 &                    & #5\\
    \end{tabular*}
    \\
    \vspace{0.1in}
}
% >>>
% <<< \begin{reslist}
\newenvironment{reslist}{
    \begin{list}{-}{
        \setlength{\rightmargin}{0.25in}
        \setlength{\leftmargin}{0.125in}
        \setlength{\itemsep}{-2pt}
    }
}{
    \end{list}
}
% >>>
% <<< \resitem
\newcommand{\resitem}[1]{\item {\small #1}}
% >>>
% <<< \resdesc
\newcommand{\resdesc}[1]{
    \begin{minipage}
        {\textwidth-0.5in}
        \vspace{4pt}{\small #1}
    \end{minipage}
}
% >>>
% <<< \resheading
\newcommand{\resheading}[1]{
    {\large \colorbox{mygrey}{
        \begin{minipage}
            {\textwidth-0.175in}
            {\textbf{#1 \vphantom{p\^{E}}}}
        \end{minipage}
    }}
}
% >>>
% \ressubheading <<<
\newcommand{\ressubheading}[4]{
    \begin{tabular*}{\textwidth-0.5in}{l@{\extracolsep{\fill}}r}
        \textbf{#1} & #2 \\
        \textit{#3} & \textit{#4} \\
    \end{tabular*}
    \\
    \vspace{-0.8pt}
}
% >>>
% \ressubsubheading <<<
\newcommand{\ressubsubheading}[3]{
    \begin{tabular*}{\textwidth-0.8in}{l@{\extracolsep{\fill}}r}
        \textbf{#2} &
    \begin{tabular*}{\textwidth-4in}{l@{\extracolsep{\fill}}r}
        & #1 \\
        & \textit{#3} \\
    \end{tabular*}
    \end{tabular*}
    \\
    \vspace{-0.8pt}
}
% >>>
% \resshortsubheading <<<
\newcommand{\resshortsubheading}[2]{
    \begin{tabular*}{\textwidth-0.5in}{l@{\extracolsep{\fill}}r}
        \textbf{\small #1} & {\small #2} \\
    \end{tabular*}
    \vspace{-6pt}
}
% >>>
% \resclasses <<<
\newlength{\res@classcolwidth}
\newlength{\resclasscolsep}
\setlength{\resclasscolsep}{0.25in}
\newcommand{\resclasses}[2]{
\setlength{\res@classcolwidth}{\textwidth/2-0.5in}
\begin{minipage}[t]{\textwidth}
\begin{center}
\vspace{0.01in}
\begin{minipage}[t]{\res@classcolwidth}
\begin{tabular*}{\res@classcolwidth}[t]
                {l@{\extracolsep{\fill}}l}
#1
\end{tabular*}
\end{minipage}
\hspace{\resclasscolsep}
\begin{minipage}[t]{\res@classcolwidth}
\begin{tabular*}{\res@classcolwidth}[t]
                {l@{\extracolsep{\fill}}l}
#2
\end{tabular*}
\end{minipage}
\vspace{0.01in}
\end{center}
\end{minipage}
}
% >>>
% \resclass <<<
\newcommand{\resclass}[2]{
    \parbox[b]{\res@classcolwidth-0.5in}{\small \textbf{#1}:} & {\small #2}\\
}
% >>>
% \restext <<<
\newcommand{\restext}[1]{
    % XXX: this 0in here seems like a hack, what do i really want?
    \vspace{0in}
    \\
    #1
    \\
    \vspace{0.1in}
}
% >>>
% >>>