DeveloperPaul123 / modern-cv

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

Bibliography section #44

Closed hadim closed 1 month ago

hadim commented 1 month ago

Thanks for this great template.

Is there is a way to add a biblio section?

DeveloperPaul123 commented 1 month ago

Do you mean like publications or things you have written? I have something similar to this in my resume:

image

= Publications

#resume-entry(
  title: lorem(20),
  location: "American Association of Physicists in Medicine",
  date: "2019",
  description: "Role"
)

#resume-item[
  - Item 1 #lorem(12)
  - Item 2 #lorem(14)
]

#resume-entry(
  title: lorem(15),
  location: "Medical Physics",
  date: "2023",
  description: "Role"
)

#resume-item[
  - Did xyz #lorem(12)
  - Did xzy #lorem(10)
]
hadim commented 1 month ago

I was thinking something based on a .bib file but indeed what you propose will do the job. Thank you!