8000 GitHub - OthoDeng/typst_cv_template: A simple template for Typst.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OthoDeng/typst_cv_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

typst_cv_template

A simple template for Typst.

Preview

How to use

  1. Copy the template(CV_en_template.typ) inside the src folder to your workspace.

Import one of the template inside your document.

#import "cv_template_en.typ": *
  1. Configure the contents. You can edit the contents below the //// Preview //// sign:
#show: doc => conf(
  name: "Lainey Rin",
  address: "No.114, Apple Road, Banan(Postcode: 12345)",
  phone: "(+21) 123-4567-8900",
  email: "how@areyou.com",
  doc,
)
  1. Configure the styles. Function cv_block is defined to construct the main content:
#let cv_block(//CV Content style
  name: none,
  date: none,
  entity: none,
  description: none,
  
) = par({
  heading(level: 2, name)
  if entity != none {
    ", "
    text(fill: luma(20%),style: "italic", entity)
  }
  h(1fr)
  text(style: "italic", date)
  v(1pt)
  text(fill: luma(12%),description)
})

Function cv_link is defined to carry links in the CV:

#let cv_link(
  url,
) = link("https://" + url, text(fill: rgb(20%, 20%, 40%), url))

About

A simple template for Typst.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages

0