How to display missing bibliography info for phdthesis in Typst 0.14

From the previously posted issue:

CSL use publisher field as report’s institution or thesis’s school and hayagriva doesn’t map them correctly.

Typst 0.14 correctly shows all entries (including TYPE) except SCHOOL, which you need to replace by PUBLISHER as indicated above.

#let data = bytes(
  ```bib
  @phdthesis{jd,
    TITLE = {{My Title}},
    AUTHOR = {Joe, Doe},
    PUBLISHER = {{Miami University}},
    YEAR = {2025},
    TYPE = {Phd thesis}
  }
  ```.text,
)

@jd
Typst #sys.version
#bibliography(data)

This project shows the result using A snippet to debug bibliography entries by showing what CSL receives

2 Likes