DeveloperPaul123 / modern-cv

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

[Feature Request] Entry Subtitle Stacking #21

Closed jaimehrubiks closed 5 months ago

jaimehrubiks commented 5 months ago

First of all thanks for sharing this CV template, it's really good.

In this post I suggest the ability to add multiple sub-entries for each entry. This could be used for something like "Title Stacking" (adding multiple titles from the same company).

This can be achieved right now by not specifying the title and location on the second resume-entry item, however, the line is still added as a blank space, so it doesn't look good.

#resume-entry(
  title: "Job Title",
  location: "Chicago, US",
  date: "2019 - Present",
  description: "Engineer"
)

#resume-item[
  - #lorem(20)
]

#resume-entry(
  date: "2011 - 2019",
  description: "Intern"
)

#resume-item[
  - #lorem(20)
]

I assume there are other ways to achieve the same result, I don't know much about typst

DeveloperPaul123 commented 5 months ago

First of all thanks for sharing this CV template, it's really good.

Thanks! Appreciate that.

I think I understand your request. Would something like this suffice?

image

If so you can achieve that by using one of the helper functions that is used internally by #resume-entry

= Experience

#resume-entry(
  title: "Job Title",
  location: "Chicago, US",
  date: "2019 - Present",
  description: "Engineer"
)

#resume-item[
  - #lorem(20)
]

#secondary-justified-header(
  "Intern",
  "2017 - 2019"
)

#resume-item[
  - #lorem(20)
]
jaimehrubiks commented 5 months ago

Yes, that is exactly what I was looking for! Thanks!