334
submitted 5 months ago* (last edited 5 months ago) by devpaul@lemmy.world to c/opensource@lemmy.ml

Hi all,

I made this typst template originally to port my personal resume to typst from Latex. It tries to be a faithful port of the Awesome-CV latex template that I was previously using. Hope you find it useful.

https://github.com/DeveloperPaul123/modern-cv

Edit: added missing link

you are viewing a single comment's thread
view the rest of the comments
[-] devpaul@lemmy.world 3 points 5 months ago

I put this together in a few minutes using my template. Does this address what you meant?

Here's the typst code:

#import "@preview/modern-cv:0.1.0": *

#show: resume.with(
  author: (
      firstname: "Person", 
      lastname: "Lastname",
      email: "email@email.com", 
      phone: "111-111-1111",
      github: "DeveloperPaul123",
      linkedin: "LinkedIn Name",
      address: "111 Road Dr. City, Place 111111",
      positions: (
        "Software Engineer",
        "Software Architect"
      )
  ),
  date: datetime.today().display()
)

= Experience

#resume-entry(
  title: "Company, Inc.",
  location: "Place, Earth",
  date: "2022 - 2023"
)

#secondary-justified-header(
  "Developer",
  "June 2023 to August 2023"
)

#resume-item[
  - #lorem(10)
  - #lorem(11)
]

#secondary-justified-header(
  "Analyst",
  "March 2021 - May 2022"
)

#resume-item[
  - #lorem(10)
  - #lorem(11)
]
[-] tarius@lemmy.ml 1 points 5 months ago* (last edited 5 months ago)

This is very close. The only thing missing is job title for the parent along with the company name for each nested experience

[-] devpaul@lemmy.world 2 points 5 months ago

Whoops! I ommited that on purpose. But you can add the job title back in. And yes I see how that would be good for each sub section to have the company name.

This should be doable, I'll update this thread if I can implement it.

[-] tarius@lemmy.ml 1 points 5 months ago
this post was submitted on 27 Mar 2024
334 points (96.4% liked)

Open Source

29787 readers
114 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 5 years ago
MODERATORS