- Notifications
You must be signed in to change notification settings - Fork5
A colorful resume template for Typst
License
elegaanz/vercanard
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A colorful resume template for Typst.
Thedemo file showcases what it is possible to do.You can see the result inthe corresponding PDF.
First of all, copy the template to your Typst project, and import it.
#import"@preview/vercanard:1.0.2":*
Then, call theresume
in a globalshow
rule function to use it.This function takes a few arguments that we explain in comments below:
#show:resume.with(// The title of your resume, generally your namename:"Your name",// The subtitle, which is the position you are looking for most of the timetitle:"What you are looking for",// The accent color to use (here a vibrant yellow)accent-color:rgb("f3bc54"),// the margins (only used for top and left page margins actually,// but the other ones are proportional)margin:2.6cm,// The content to put in the right aside blockaside: [ = Contact// lists in the aside are right aligned -#link("mailto:example@example.org") - +33 6 66 66 66 66 ])// And finally the main body of your resume can come here
When writing the body, you can use level-1 headings as section titles,and format an entry with theentry
function (that takes three contentblocks as arguments, for title, description and details).
= Personal projects#entry[Vercanard][A resume template for Typst][2023 — Typst]
This template is under the GPLv3 licence, but resume builtusing it are not considered binary derivatives, only outputfrom another program, so you can keep full copyright on themand chose not to licence them under a free licence.
About
A colorful resume template for Typst