summaryrefslogtreecommitdiffstats
path: root/tex/jesse_resume.sty
blob: a082b720b200582b810fbe2aafe3e74eb2c8564e (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
% 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,jesse_macros}
\RequirePackage[empty]{fullpage}
% >>>
% <<< dimensions/margins
\raggedbottom
\raggedright
\setlength{\textheight}{9.0in}
\setlength{\tabcolsep}{0in}
\addtolength{\oddsidemargin}{-0.375in}
\addtolength{\evensidemargin}{0.375in}
\addtolength{\textwidth}{0.5in}
\addtolength{\topmargin}{-.5in}
\addtolength{\textheight}{0.75in}
% >>>
% <<< other definitions
\definecolor{mygrey}{gray}{0.90}
% >>>
% <<< Custom commands
% <<< \resitem
\newcommand{\resitem}[1]{\item #1 \vspace{-2pt}}
% >>>
% <<< \resheading
\newcommand{\resheading}[1]{
    {\large \colorbox{mygrey}{
        \begin{minipage}
            {\textwidth}
            {\textbf{#1 \vphantom{p\^{E}}}}
        \end{minipage}
    }}
}
% >>>
% \ressubheading <<<
\newcommand{\ressubheading}[4]{
    \begin{tabular*}{6.5in}{l@{\extracolsep{\fill}}r}
        \textbf{#1} & #2 \\
        \textit{#3} & \textit{#4} \\
    \end{tabular*}
    \vspace{-6pt}
}
% >>>
% \resshortsubheading <<<
\newcommand{\resshortsubheading}[2]{
    \begin{tabular*}{6.5in}{l@{\extracolsep{\fill}}r}
        \textbf{#1} & #2 \\
    \end{tabular*}
    \vspace{-6pt}
}
% >>>
% >>>