My resume template. Written with Typst.
- Install typst.
- Set font and primary color on
template.typ
. - Write a resume based on
resume.example.typ
. - Compile
.typ
into.pdf
usingtypst
.
Edit color
and font
in template.typ
file.
You can get a list of available fonts with the typst fonts
command.
#let color = (
black: rgb("#333"),
gray: rgb("#777"),
primary: rgb(16,163,127),
)
#let font = (
base: "Noto Sans CJK KR"
)
Import template with following code:
#import "template.typ": *
#show: resume.with(
title: "resume",
author: (
name: " ",
role: " ",
introduction: [ ],
info: [ ]
),
)
See the docs for the syntax.
You can run a daemon with command watch
to recompile whenever the file change.
$ typst compile resume.typ
$ typst watch resume.typ