155 lines
3.7 KiB
Text
155 lines
3.7 KiB
Text
#show heading: set text(font: "New Computer Modern")
|
|
#show link: underline
|
|
|
|
// Uncomment the following lines to adjust the size of text
|
|
// The recommend resume text size is from `10pt` to `12pt`
|
|
// #set text(
|
|
// size: 12pt,
|
|
// )
|
|
|
|
// Choose the compiled language through cli by doing
|
|
//
|
|
// $ typst compile --input lang=de cv.typ
|
|
//
|
|
#let lang = {
|
|
if "lang" in sys.inputs and sys.inputs.lang == "de" {
|
|
"de"
|
|
} else {
|
|
"en"
|
|
}
|
|
}
|
|
|
|
// Feel free to change the margin below to best fit your own CV
|
|
#set page(
|
|
paper: "a4",
|
|
margin: (x: 0.9cm, y: 1.3cm),
|
|
footer: context [
|
|
#set text(8pt)
|
|
#text(fill:luma(230))[Marty Oehme]
|
|
#set align(right)
|
|
#text(fill:luma(230))[#counter(page).display("1",both:false)]
|
|
]
|
|
)
|
|
|
|
#set par(justify: true)
|
|
|
|
#let header(about, columns: (1.5fr, 1fr, 1fr)) = {
|
|
[= #about.fullname];
|
|
let contact_fields = (for c in about.contact {
|
|
if "link" in c {
|
|
([#c.icon ~ #link(c.link)[#c.text]],)
|
|
} else {
|
|
([#c.icon ~ #c.text],)
|
|
}
|
|
})
|
|
grid(
|
|
columns: columns,
|
|
gutter: 5pt,
|
|
..contact_fields
|
|
);
|
|
}
|
|
|
|
#let horizon_line() = {v(-3pt); line(length: 100%); v(-5pt)}
|
|
|
|
#let section_header(title) = {[== #title]; horizon_line()};
|
|
|
|
#let section(title: "Section", body) = {
|
|
section_header(title);
|
|
body
|
|
};
|
|
|
|
#let work_item(item: ()) = {
|
|
if "client" in item {
|
|
[*#item.title.at(lang)*, _#item.client.at(lang)_ #h(1fr)];
|
|
} else {
|
|
[*#item.title.at(lang)* #h(1fr)];
|
|
};
|
|
[ _#item.date.at(lang)_ \ ];
|
|
if "bullets" in item {
|
|
for bullet in item.bullets {
|
|
[- #bullet.at(lang)]
|
|
}
|
|
}
|
|
if "publication" in item {
|
|
block(inset: 5%, width: 85%, text(fill:luma(150))[#item.publication.at(lang) \ ])
|
|
};
|
|
}
|
|
|
|
#let education_item(item: ()) = {
|
|
assert("place" in item and "program" in item and "date" in item, message: "Education items require place, program and date.");
|
|
[*#item.place.at(lang)*, #item.program.at(lang) #h(1fr)];
|
|
[ _#item.date.at(lang)_ \ ];
|
|
}
|
|
|
|
#let thesis_item(item: ()) = {
|
|
assert("type" in item and "title" in item, message: "Thesis items require type and title.");
|
|
[*#item.type.at(lang)* #item.title.at(lang) #h(1fr)];
|
|
[#par(item.abstract.at(lang))]
|
|
}
|
|
|
|
#let sel_word_lang(de: "", en:"") = {
|
|
if lang == "de" {
|
|
de
|
|
} else {
|
|
en
|
|
}
|
|
}
|
|
|
|
#let skill_item(item: ()) = {
|
|
[*#item.at(lang)*: \ ]
|
|
for skill in item.content {
|
|
[#skill.name.at(lang) (]
|
|
for (i, v) in skill.items.enumerate() {
|
|
[#v.at(lang)]
|
|
if i < skill.items.len() - 1 {
|
|
[, ]
|
|
}
|
|
}
|
|
[) \ ]
|
|
}
|
|
}
|
|
|
|
|
|
#let resume(contents) = {
|
|
header(contents.about)
|
|
if "summary" in contents {
|
|
section(title:"", {
|
|
contents.summary.at(lang)
|
|
})
|
|
};
|
|
|
|
if "experience" in contents {
|
|
let title = sel_word_lang(en:"Professional Experience", de:"Berufserfahrung")
|
|
section(title: title, {
|
|
for entry in contents.experience {
|
|
work_item(item:entry)
|
|
}
|
|
})
|
|
}
|
|
|
|
if "education" in contents {
|
|
let title = sel_word_lang(en:"Education", de:"Ausbildung")
|
|
section(title: "Education", {
|
|
for entry in contents.thesis {
|
|
thesis_item(item:entry)
|
|
}
|
|
for entry in contents.education {
|
|
education_item(item:entry)
|
|
}
|
|
})
|
|
}
|
|
|
|
if "skills" in contents {
|
|
let title = sel_word_lang(en:"Qualifications", de:"Qualifikationen")
|
|
section(title: "Qualifications", {
|
|
for cat in contents.skills {
|
|
skill_item(item:cat)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
#resume(
|
|
yaml("content.yml")
|
|
)
|
|
|