We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to current Typst constraint, one still has to include some custom hacky functions in the template files. For example, in cy.typ when importing:
cy.typ
#import "@preview/brilliant-cv:2.1.0": cv #let metadata = toml("./metadata.toml") #let import-modules(modules, lang: metadata.language) = { for module in modules { include { "modules_" + lang + "/" + module + ".typ" } } }
Instead of an ideal way:
#import "@preview/brilliant-cv:2.1.0": cv
This involves several files:
cv.typ
letter.typ
#let cv-section = cv-section.with(metadata: metadata)
This involves two technical issues:
More to update in this thread, and we will see how to tackle them with Typst's upgrades.
The text was updated successfully, but these errors were encountered:
mintyfrankie
No branches or pull requests
Due to current Typst constraint, one still has to include some custom hacky functions in the template files. For example, in
cy.typ
when importing:Instead of an ideal way:
This involves several files:
cv.typ
andletter.typ
#let cv-section = cv-section.with(metadata: metadata)
This involves two technical issues:
More to update in this thread, and we will see how to tackle them with Typst's upgrades.
The text was updated successfully, but these errors were encountered: