-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreamble_consulting.tex
More file actions
140 lines (127 loc) · 5.17 KB
/
preamble_consulting.tex
File metadata and controls
140 lines (127 loc) · 5.17 KB
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
%% =====================================================================
%% preamble_consulting.tex
%% Consulting / industry-style résumé preamble (XeLaTeX).
%%
%% Produces a single-column layout with standard margins, centered
%% name/contact header, and full-width bold section headings
%% (EDUCATION, PROFESSIONAL EXPERIENCE, etc.) underlined by a rule —
%% the format used by MBA and consulting recruiting résumés.
%%
%% This is a companion to preamble.tex (the academic two-column style).
%% Both produce PDFs from the same sections/ content files where
%% applicable; the consulting-specific content lives in sections/consulting/.
%%
%% To change the font, replace the argument to \setmainfont below.
%% =====================================================================
%% =====================================================================
%% FONT CONFIGURATION
%% =====================================================================
\usepackage{fontspec}
\usepackage{anyfontsize}
\setmainfont{Times New Roman} %% ← change to any system font
\AtBeginDocument{\fontsize{11}{13}\selectfont}
%% =====================================================================
%% PAGE STYLE
%% =====================================================================
%% Suppress page numbers — standard for résumés.
\pagestyle{empty}
%% =====================================================================
%% HYPERLINKS
%% =====================================================================
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
urlcolor = blue,
linkcolor = blue
}
%% =====================================================================
%% SPACING
%% =====================================================================
\setlength{\parindent}{0pt}
\setlength{\parskip}{0pt}
%% =====================================================================
%% LIST FORMATTING
%% =====================================================================
%% Compact bullet lists: no extra spacing above, below, or between items.
\usepackage{enumitem}
\setlist[itemize]{topsep=1pt, itemsep=0pt, parsep=0pt, leftmargin=15pt}
%% =====================================================================
%% PACKAGES
%% =====================================================================
%% tabular* is used in sections/consulting/education/dubai_college.qmd.
\usepackage{array}
%% =====================================================================
%% CUSTOM COMMANDS
%% =====================================================================
%% ----- \csection{TITLE} -----
%% Full-width rule above the section heading, with the bold title just below.
%% More space after the title before the first entry.
%%
%% Example: \csection{PROFESSIONAL EXPERIENCE}
\newcommand{\csection}[1]{%
\vspace{5pt}%
\noindent\textbf{#1}\\[-8pt]%
\rule{\textwidth}{0.5pt}\par%
\vspace{1pt}%
}
%% ----- \centry{Org}{Role}{Location}{Date} -----
%% Standard entry header for work experience, leadership, and awards.
%% Org is bold, Role is italic, Location is plain, Date is right-aligned.
%% Uses \hfill so long entry text degrades gracefully without crowding
%% the date (unlike a tabular* which collapses when text overflows).
%%
%% Example:
%% \centry{Microsoft Research}{Research Intern}{Redmond, WA}{May--Aug 2021}
%% \begin{itemize}
%% \item ...
%% \end{itemize}
\newcommand{\centry}[4]{%
\vspace{2pt}%
\noindent\textbf{#1,} \textit{#2,} #3\hfill\mbox{#4}\par%
}
%% ----- \ceduentry{Org}{Program}{Location}{Date} -----
%% Education entry. Org is bold, Program (degree/concentration) is italic.
%% Location and Date appear on the right.
%%
%% Example:
%% \ceduentry{Stanford University}{Ph.D. in Computer Science}{Stanford, CA}{Aug 2022--Present}
\newcommand{\ceduentry}[4]{%
\vspace{2pt}%
\noindent\textbf{#1,} \textit{#2}\hfill\mbox{#3 \quad #4}\par%
}
%% ----- \cawardentry{Award}{Context}{Date} -----
%% Compact award / honor entry. Award name is bold, Context is italic,
%% Date is right-aligned.
%%
%% Example:
%% \cawardentry{Best Paper Award}{ICML Reliable ML Workshop}{July 2024}
\newcommand{\cawardentry}[3]{%
\vspace{2pt}%
\noindent\textbf{#1,} \textit{#2}\hfill\mbox{#3}\par%
}
%% ----- \ceduentrytwo{Org}{Program}{Location}{Date1}{Date2} -----
%% Education entry with two graduation dates on the right (same line) —
%% used for dual-degree programs where each degree has its own date.
%%
%% Example:
%% \ceduentrytwo{University of Pennsylvania}
%% {Jerome Fisher Program in Management and Technology}
%% {Philadelphia, PA}{May 20xx}{May 20xx}
\newcommand{\ceduentrytwo}[5]{%
\vspace{2pt}%
\noindent\textbf{#1,} \textit{#2}\hfill\mbox{#3 \quad #4\,/\,#5}\par%
}
%% ----- \centrynorole{Org}{Location}{Date} -----
%% Entry header without a role/title — used where only the org name
%% is listed (e.g., award sub-entries like "Penn Cricket Club, Philly, PA").
%% Org is bold, Location is plain, Date is right-aligned.
%%
%% Example:
%% \centrynorole{Penn Cricket Club}{Philadelphia, PA}{August 20xx - Present}
%% \begin{itemize}
%% \item Selected as MVP ...
%% \end{itemize}
\newcommand{\centrynorole}[3]{%
\vspace{2pt}%
\noindent\textbf{#1,} #2\hfill\mbox{#3}\par%
}