-
Notifications
You must be signed in to change notification settings - Fork 1
/
moderncv.typ
230 lines (197 loc) · 5.17 KB
/
moderncv.typ
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
* Customizations on this template:
*
* - headings (h1..h4)
*
* - `datebox` function: provides content with stacked year above (big) and month below (tinier)
*
* - `daterange` function: two `datebox`es separated by an em dash
*
* - `xdot`: function, adds a trailing dot to a string only if it's not already present
*
* - `cvgrid`: basic layout function that wraps a grid. Controlled by two parameters `left_column_size` (default: 25%) and `grid_column_gutter` (default: 8pt) which control the left column size and the column gutter respectively.
*
* - `cvcol`: used to write in the rightmost column only. Builds on `cvgrid`
*
* - `cventry`: used to write a CV entry. Builds on `cvgrid`
*
* - `cvlangauge`: used to write a language entry. Builds on `cvgrid`
*
*/
#let left_column_size = 25%
#let grid_column_gutter = 8pt
#let main_color = rgb(147, 14, 14)
#let heading_color = main_color
#let job_color = rgb("#737373")
#let icon(codepoint) = {
box(
height: 0.8em,
baseline: 0.05em,
image(codepoint)
)
h(0.1em)
}
#let language_box(language_name,language_colour,language_icon) = {
box(
height: auto,
width: auto,
inset: 0.5em,
radius: 0.5cm,
fill: language_colour.lighten(60%),
stroke: language_colour.darken(20%) + 2pt,
stack(dir: ltr,icon(language_icon),language_name)
)
}
#let project(
title: "",
author: [],
phone: "",
email: "",
github: "",
left_column_size: left_column_size,
grid_column_gutter: grid_column_gutter,
main_color: main_color,
heading_color: heading_color,
job_color: job_color,
link_color: rgb("#55cdfc"),
pronouns: "",
address: "",
body
) = {
set document(author: author, title: title)
set page(numbering: none)
set text(lang: "fr", fallback: true)
show math.equation: set text(weight: 400)
show heading.where(level: 1): element => [
#v(0em)
#box(
inset: (right: grid_column_gutter, bottom: 0.1em),
rect(fill: main_color, width: left_column_size, height: 0.25em)
)
#text(element.body, size: 1em,fill: heading_color, weight: 400)
]
show heading.where(level: 2): element => [
#text(element.body + ",", size: 0.8em)
]
show link: set text(fill:link_color)
show heading.where(level: 3): element => [
#text(element.body, size: 1em, weight: 400, style: "italic")
]
show heading.where(level: 4): element => block[#text(element.body, size: 1em, weight: 400, fill: heading_color)]
set list(marker: box(circle(radius: 0.2em, stroke: heading_color), inset: (top: 0.15em)))
set enum(numbering: (n) => text(fill: heading_color, [#n.]))
grid(
columns: (1fr, 1fr),
box[
// Author information.
#text([#author], weight: 400, 2.5em)
#v(-1.2em)
// Title row.
#block(text(weight: 400, 1.3em, title, style: "italic", fill: job_color))
],
align(right + top)[
// Contact information
#set text(job_color,size:10pt,style:"italic")
#set block(below: 0.5em)
#if address != "" {
align(top)[
#address
]
}
#v(0.25em)
#if pronouns != "" {
align(top)[
#pronouns
]
}
#v(0.125em)
#if github != "" {
align(top)[
#box(height: 1em, baseline: 20%)[#pad(right: 0.4em)[#image("icons/github.svg")]]
#link("https://github.com/" + github)[#github]
]
}
#if phone != "" {
align(top)[
#box(height: 1em, baseline: 20%)[#pad(right: 0.4em)[#image("icons/phone-solid.svg")]]
#link("tel:" + phone)[#phone]
]
}
#if email != "" {
align(top)[
#box(height: 1em, baseline: 20%)[#pad(right: 0.4em)[#image("icons/envelope-regular.svg")]]
#link("mailto:" + email)
]
}
]
)
// Main body.
set par(justify: true, leading: 0.3em)
body
}
#let datebox(month: "", year: []) = box(
align(center,
stack(
dir: ttb,
spacing: 0.2em,
text(size: 1em, [#year]),
text(size: 0.75em, month),
)
)
)
#let daterange(start: (month: "", year: []), end: (month: "", year: [])) = box(
stack(dir: ltr,
spacing: 0.4em,
datebox(month: start.month, year: start.year),
[--],
datebox(month: end.month, year: end.year)
)
)
#let cvgrid(..cells) = pad(bottom: 0.3em)[#grid(
columns: (left_column_size, auto),
row-gutter: 0em,
column-gutter: grid_column_gutter,
..cells
)]
#let cvcol(content) = cvgrid([], content)
#let xdot(s) = {
if s.ends-with(".") {
s
} else {
s + "."
}
}
#let cventry(
description,
start: (month: "", year: ""),
end: (month: "", year: ""),
place: "",
role: []
) = cvgrid(
align(center, daterange(start: start, end: end)),
[
== #role
=== #xdot(place)
],
[],
description
)
#let cvlanguage(
language: [],
description: [],
certificate: [],
) = cvgrid(
align(right, language),
[#description #h(3em) #text(style: "italic", certificate)],
)
#let cvprogramming(
language: [],
description: [],
icon_name: "",
language_name: "",
language_colour: "",
certificate: [],
) = cvgrid(
align(right,language_box(language_name,language_colour,icon_name)),
[#description #h(3em) #text(style: "italic", certificate)],
)