-
Notifications
You must be signed in to change notification settings - Fork 3
/
modernpro-coverletter.typ
244 lines (215 loc) · 5.64 KB
/
modernpro-coverletter.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
///////////////////////////////
// modernpro-coverletter.typ
// A cover letter template with modern Sans font for job applications and other formal letters.
// Copyright (c) 2024
// Author: Jiaxin Peng
// License: MIT
// Version: 0.0.5
// Date: 2024-10-21
// Email: jiaxin.peng@outlook.com
///////////////////////////////
#let coverletter(
font-type: "",
name: "",
address: none,
contacts: (),
recipient: (start-title: "", cl-title: "", date: "", department: "", institution: "", address: "", postcode: ""),
supplement: none,
mainbody,
) = {
set text(font: font-type, weight: "regular")
let date-colour = rgb("#666666")
let primary-colour = rgb("#000000")
let headings-colour = rgb("#2b2b2b")
let subheadings-colour = rgb("#333333")
let sectionsep = {
[#v(5pt)]
}
let subsectionsep = {
[#v(2pt)]
}
// set the recipient
let recipient-generate(start-title, cl-title, date, department, institution, address, postcode) = {
align(
left,
{
if department != [] {
text(10pt, font: font-type, fill: subheadings-colour, weight: "bold")[#department]
}
h(1fr)
if date != [] {
text(10pt, font: font-type, fill: primary-colour, weight: "light")[#date\ ]
} else {
text(
10pt,
font: font-type,
fill: primary-colour,
weight: "light",
)[ #datetime.today(offset: auto).display("[day] [month repr:long] [year]")\ ]
}
if institution != [] {
text(10pt, font: font-type, fill: subheadings-colour, weight: "bold")[#institution\ ]
}
if address != [] {
text(10pt, font: font-type, fill: headings-colour, weight: "light")[#address\ ]
}
if postcode != [] {
text(10pt, font: font-type, fill: headings-colour, weight: "light")[#postcode ]
}
},
)
if postcode != [] {
align(left, text(12pt, font: font-type, fill: primary-colour, weight: "bold")[#upper(cl-title)])
v(0.1em)
}
if start-title != [] {
set text(11pt, font: font-type, fill: primary-colour, weight: "regular")
[#start-title]
}
}
// show contact details
let contact-display(contacts) = {
v(-5pt)
set text(10pt, fill: headings-colour, weight: "regular")
contacts
.map(contact => {
if ("link" in contact) {
link(contact.link)[#{
contact.text
}]
} else [
#{
contact.text
}
]
})
.join(" | ")
}
set page(
margin: (left: 1.25cm, right: 1.25cm, top: 3cm, bottom: 1.5cm),
header: {
// Head Name Section
text(
20pt,
fill: primary-colour,
weight: "bold",
top-edge: "baseline",
bottom-edge: "baseline",
baseline: 12pt,
)[#align(center, [#name])]
// address
if address != none {
v(5pt)
text(
11pt,
fill: primary-colour,
weight: "regular",
top-edge: "baseline",
bottom-edge: "baseline",
baseline: 2pt,
)[#align(center, [#address])]
}
v(2pt)
align(center)[#contact-display(contacts)]
line(length: 100%, stroke: 0.2pt + primary-colour)
},
header-ascent: 1em,
)
// Add recipient details
recipient-generate(
recipient.start-title,
recipient.cl-title,
recipient.date,
recipient.department,
recipient.institution,
recipient.address,
recipient.postcode,
)
set par(justify: true, first-line-indent: 2em)
set text(11pt, font: font-type, fill: primary-colour, weight: "regular")
mainbody
set text(11pt, font: font-type, fill: primary-colour, weight: "regular")
v(1pt)
[Sincerely,]
v(1pt)
[*#name*]
if supplement != none {
v(1pt)
[#supplement]
}
}
#let statement(
font-type: "",
name: "",
address: none,
contacts: (),
supplement: none,
mainbody,
) = {
set text(font: font-type, weight: "regular")
let date-colour = rgb("#666666")
let primary-colour = rgb("#000000")
let headings-colour = rgb("#2b2b2b")
let subheadings-colour = rgb("#333333")
let sectionsep = {
[#v(5pt)]
}
let subsectionsep = {
[#v(2pt)]
}
// show contact details
let contact-display(contacts) = {
v(-5pt)
set text(10pt, fill: headings-colour, weight: "regular")
contacts
.map(contact => {
if ("link" in contact) {
link(contact.link)[#{
contact.text
}]
} else [
#{
contact.text
}
]
})
.join(" | ")
}
set page(
margin: (left: 1.25cm, right: 1.25cm, top: 3cm, bottom: 1.5cm),
header: {
// Head Name Section
text(
20pt,
fill: primary-colour,
weight: "bold",
top-edge: "baseline",
bottom-edge: "baseline",
baseline: 12pt,
)[#align(center, [#name])]
// address
if address != none or address != [] {
v(5pt)
text(
11pt,
fill: primary-colour,
weight: "regular",
top-edge: "baseline",
bottom-edge: "baseline",
baseline: 2pt,
)[#align(center, [#address])]
}
align(center)[#contact-display(contacts)]
line(length: 100%, stroke: 0.2pt + primary-colour)
},
header-ascent: 1em,
)
set par(justify: true, first-line-indent: 2em)
set text(11pt, font: font-type, fill: primary-colour, weight: "regular")
mainbody
set text(11pt, font: font-type, fill: primary-colour, weight: "regular")
if supplement != none {
v(1pt)
[#supplement]
}
}