-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCV_Charih.typ
422 lines (354 loc) · 9.37 KB
/
CV_Charih.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
#import "@preview/fontawesome:0.5.0": *
#import "@preview/icu-datetime:0.1.2": fmt-date, fmt-time, fmt-datetime, experimental
#set text(font: "Palatino", size: 10pt)
#show link: set text(blue)
//#show heading: set align(center)
#set list(indent: 3em, spacing: 10pt)
#let cv = yaml("src/lib/content/cv.yaml")
#set page(margin: (
top: 1.5cm,
bottom: 1.5cm,
left: 1.5cm,
right: 1.5cm,
),
footer: context [
Prepared with #fa-icon("heart", solid: true) and Typst
#h(1fr)
#counter(page).display(
"1/1",
both: true,
)
#h(1fr)
Last updated: #fmt-date(datetime.today(), locale: "en", length: "full")
]
)
#let fa(name) = {
text(
font: "Font Awesome 6 Free",
size: 10pt,
box[ #name ]
)
}
#align(center)[#text(weight: "bold", size: 2.5em)[François Charih]]
#show heading.where(level:3): it => [
#set align(center)
#it.body
#v(1em)
]
#show heading.where(level:2): it => [
#set align(center)
#set text(1em, weight: "bold")
#table(
columns: 1fr,
stroke: (left: none, right: none),
[#it.body]
)
]
// Formatting functions
#let print-education(contents) = {
table(
stroke: none,
columns: (1fr, auto),
//inset: 10pt,
row-gutter: 1em,
align: (left, right),
..for entry in contents {
([
#text(weight: "bold")[#entry.degree in #entry.topic] \
#entry.school\
*Thesis:* #entry.thesistitle \
#if entry.keys().contains("advisors") [
#[*Thesis advisor(s):* #entry.advisors.map(advisor => [#link(advisor.website)[#advisor.name]]).join(", ", last: " and ")]
] else [
]
], [
#entry.years \
#fa-icon("location-dot") #entry.location \
])
}
)
}
#let print-employment(contents) = {
for entry in contents {
table(
stroke: none,
columns: (auto, 1fr),
//inset: 10pt,
row-gutter: 1em,
align: (left, right),
[
#text(weight: "bold")[#entry.title] \
#entry.employer \
],
[
#entry.years \
#fa-icon("location-dot") #entry.location \
]
)
list(..entry.details.map(d => list.item(d)))
}
}
#let format-journal(entry) = {
[#entry.authors. #entry.title (#entry.year). #text(style: "italic")[#entry.publisher]#if entry.volume != "" [, #entry.volume]#if entry.issue != "" [(#entry.issue)]#if entry.volume != "" [.]
#if entry.comment != "" [ (#entry.comment)]
#if entry.url != "" [ \[#link(entry.url)[Link]\]]
]
[
]
}
#let format-conference(entry) = {
[#entry.authors. #entry.title. #text(style: "italic")[#entry.conference], #entry.location, #entry.date.]
if entry.comment != "" [ (#entry.comment)]
if entry.url != "" [ \[#link(entry.url)[Link]\]]
[
]
}
#let print-journal-papers(publications, first: false) = {
let journal-entries = publications.filter(p => p.type == "journal")
if first [
\[J#(journal-entries.len())\] #format-journal(publications.at(0))
] else [
#for (i, entry) in journal-entries.enumerate().slice(1) {
[\[J#(journal-entries.len() - i)\] #format-journal(entry)]
}
]
}
#let print-conference-papers(publications, first: false) = {
let conference-entries = publications.filter(p => p.type == "conference")
if first [
\[C#(conference-entries.len())\] #format-conference(conference-entries.at(0))
] else [
#for (i, entry) in conference-entries.enumerate().slice(1) {
[\[C#(conference-entries.len() - i)\] #format-conference(entry)]
}
]
}
#let format-other(entry) = {
[#entry.authors. #entry.title. #text(style: "italic")[#entry.type], #entry.publisher#if "location" in entry {[, #entry.location]}, #entry.date.]
if entry.comment != "" [ (#entry.comment)]
if entry.url != "" [ \[#link(entry.url)[Link]\]]
[
]
}
#let print-other(publications, first: false) = {
let other-entries = publications.filter(p => not ("journal", "conference").contains(p.type))
if first [
\[O#(other-entries.len())\] #format-other(other-entries.at(0))
] else [
#for (i, entry) in other-entries.enumerate().slice(1) {
[\[O#(other-entries.len() - i)\] #format-other(entry)]
}
]
}
#let format-presentation(entry, num) = {
table(
stroke: none,
columns: (1fr, auto),
//inset: 10pt,
row-gutter: 1em,
align: (left, right),
[
\[PW#num\] #text(weight: "bold")[#entry.title] \
#entry.event #if entry.url != "" [ \[#link(entry.url)[Link]\]]\
],
[
#entry.date \
#fa-icon("location-dot") #entry.location \
]
)
}
#let print-presentations(contents, first: false) = {
if first [
#format-presentation(contents.at(0), contents.len())
] else [
#for (i, entry) in contents.enumerate().slice(1) {
[#format-presentation(entry, contents.len() - i)]
}
]
}
#let format-poster(entry, num) = {
table(
stroke: none,
columns: (1fr, auto),
//inset: 10pt,
row-gutter: 1em,
align: (left, right),
[
[P#(num)] #text(weight: "bold")[#entry.title] \
#entry.event #if entry.keys().contains("url") and entry.url != "" [ \[#link(entry.url)[Link]\]]\
],
[
#entry.date \
#fa-icon("location-dot") #entry.location \
]
)
}
#let print-posters(contents, first: false) = {
if first [
#format-poster(contents.at(0), contents.len())
] else [
#for (i, entry) in contents.enumerate().slice(1) {
format-poster(entry, contents.len() - i)
}
]
}
#let format-award(entry) = {
table(
stroke: none,
columns: (1fr, auto),
//inset: 10pt,
row-gutter: 1em,
align: (left, right),
[
#text(weight: "bold")[#entry.title], #entry.source #if entry.keys().contains("value") and entry.value != "" [(#entry.value)] \
#if entry.keys().contains("comment") and entry.comment != "" [#entry.comment]
],
[
#entry.year
]
)
}
#let print-awards(contents, first: false) = {
if first [
#format-award(contents.at(0))
] else [
#for (i, entry) in contents.enumerate().slice(1) {
format-award(entry)
}
]
}
#let print-mentees(contents) = {
for (i, entry) in contents.enumerate() {
table(
stroke: none,
columns: (1fr, auto),
//inset: 10pt,
row-gutter: 1em,
align: (left, right),
[
#text(weight: "bold")[#entry.student], #entry.type \
Project: #text(style: "italic")[#entry.project]
],
[
#entry.date
]
)
}
}
#let format-involvement(entry) = {
table(
stroke: none,
columns: (1fr, auto),
//inset: 10pt,
row-gutter: 1em,
align: (left, right),
[
#text(weight: "bold")[#entry.title] \
#entry.source
],
[
#entry.year
]
)
}
#let print-involvement(contents, first: false) = {
if first [
#format-involvement(contents.at(0))
] else [
#for (i, entry) in contents.enumerate().slice(1) {
format-involvement(entry)
}
]
}
Carleton University Biomedical Informatics Collaboratory (cuBIC)\
Institute of Biochemistry, Carleton University \
NuvoBio \
Health Sciences Building, Room 4302 \
1125, Colonel By Drive \
Ottawa, ON (K1S 5B6) \
#fa-icon("envelope") #link("mailto:[email protected]")[francois\@charih.ca] \
#fa-icon("earth") #link("https://charih.ca")[https://charih.ca]
== Research interests
#align(center)[
#table(
stroke: none,
columns: (auto, auto, auto),
//inset: 10pt,
row-gutter: 1em,
column-gutter: 3em,
align: (left, left, left),
[
Computational biology \
Biomedical informatics
],
[
Applied machine learning \
High performance computing
],
[
Cloud computing \
Peptide therapeutic design
]
)
]
== Education
#print-education(cv.education)
#box(width: 100%)[
== Relevant employment experience
#print-employment(cv.employment.slice(0, count: 1))
]
#print-employment(cv.employment.slice(1))
#show "F. Charih": name => text(weight: "bold")[F. Charih]
#box(width: 100%)[
== Publications
=== Peer-reviewed journal articles
#print-journal-papers(cv.publications, first: true)
]
#print-journal-papers(cv.publications, first: false)
#box(width: 100%)[
=== Conference proceedings
#print-conference-papers(cv.publications, first: true)
]
#print-conference-papers(cv.publications, first: false)
#box(width: 100%)[
=== Other manuscripts (_e.g._ pre-prints, theses, _etc._)
#print-other(cv.publications, first: true)
]
#print-other(cv.publications, first: false)
#box(width: 100%)[
== Presentations and workshops
#print-presentations(cv.presentations, first: true)
]
#print-presentations(cv.presentations, first: false)
#box(width: 100%)[
== Selected posters
#print-posters(cv.posters, first: true)
]
#print-posters(cv.posters, first: false)
#box(width: 100%)[
== Awards and honours
#print-awards(cv.awards, first: true)
]
#print-awards(cv.awards)
#box(width: 100%)[
== Research mentoring
I have had the great pleasure to mentor the following students:
]
#print-mentees(cv.mentoring)
#box(width: 100%)[
== Peer reviews
I have reviewed submissions for the following peer-reviewed journals or conferences:
]
#for p in cv.peerreviews [
- #p.venue (#p.count review#if p.count > 1 [s])
]
#box(width: 100%)[
== Other relevant roles
#print-involvement(cv.involvement, first: true)
]
#print-involvement(cv.involvement)
#box(width: 100%)[
== Languages
*Natural languages:* French (native), English (full professional proficiency), Moroccan Arabic (elementary proficiency)
*Programming languages:* Python, Rust, C/C++, JavaScript, Java, HTML/CSS
]