Skip to content

nyeong/resume-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

resume

My resume template. Written with Typst.

resume example image

Usage

  1. Install typst.
  2. Set font and primary color on template.typ.
  3. Write a resume based on resume.example.typ.
  4. Compile .typ into .pdf using typst.

Set font and primary color

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"
)

Write a resume

Import template with following code:

#import "template.typ": *

#show: resume.with(
  title: "resume",
  author: (
    name: " ",
    role: " ",
    introduction: [ ],
    info: [ ]
  ),
)

See the docs for the syntax.

Compile into pdf

You can run a daemon with command watch to recompile whenever the file change.

$ typst compile resume.typ
$ typst watch resume.typ

About

My resume template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published