DeveloperPaul123 / modern-cv

A modern resume template written in Typst, inspired by Awesome-CV
Other
207 stars 34 forks source link

Add font input for resume and coverletter #54

Closed DeveloperPaul123 closed 3 weeks ago

DeveloperPaul123 commented 3 weeks ago

You can now specify the font for the resume and coverletter.

Fixes #50

Example:

#show: coverletter.with(
  author: (
    firstname: "John",
    lastname: "Smith",
    email: "js@gmail.com",
    homepage: "https://example.com",
    phone: "(+1) 111-111-1111",
    github: "DeveloperPaul123",
    linkedin: "John Smith",
    address: "111 Example St. Apt. 111, Example City, EX 11111",
    positions: (
      "Software Engineer",
      "Full Stack Developer",
    ),
  ),
  profile-picture: image("./profile.png"),
  language: "en",
  font: "Times New Roman"
)