CV/cv.typ
2025-06-07 16:38:55 +08:00

26 lines
464 B
Typst

// Imports
#import "@preview/brilliant-cv:2.0.5": cv
#let metadata = toml("./metadata.toml")
#let importModules(modules, lang: metadata.language) = {
for module in modules {
include {
"modules_" + lang + "/" + module + ".typ"
}
}
}
#show: cv.with(
metadata,
profilePhoto: image("./src/avatar.png"),
)
// #set text(size: 9pt)
#importModules((
"education",
"skills",
"professional",
"projects",
"publications",
"certificates",
))