stuxf / basic-typst-resume-template

A basic resume for typst, designed to work well with ATS systems.
The Unlicense
16 stars 5 forks source link

Order and font style in sections #5

Closed olemartinlarsen closed 4 days ago

olemartinlarsen commented 1 week ago

Hi again,

I am tweaking my resume and there is two things I can not get quite right for it to be just right.

#work(
  title: "Subatomic Shepherd and Caffeine Connoisseur",
  location: "Atomville, CA",
  company: "Microscopic Circus, Schrodinger's University",
  dates: dates-helper(start-date: "May 2024", end-date: "Present"),
)
- more bullet points go here
stuxf commented 4 days ago

Hey! Current sorting and ordering is pretty much based off what I see most resumes tend to use, which makes it better for ATS parsing I believe.

However, if you want, there are a couple generic components that you can use (which I should probably document haha)

generic-two-by-two(
  top-left: "",
  top-right: "",
  bottom-left: "",
  bottom-right: "",
) 
generic-one-by-two(
  left: "",
  right: "",
)

And if you want to change the boldness/italics, you can just use the functions strong("text") and emph("text")