Since Typst 0.14.0 came out, as I was replying to Bibliography for phdthesis missing infos in Typst 0.14 - #3 by vmartel08 it made me remember about the current one. Similar scenario.
This now works:
#let data = bytes(```bib
@mastersthesis{Masters2010,
title = {Master's Thesis Title},
author = {LastName, Masters Author},
publisher = {University of Bergen},
year = {2010},
month = {May},
type = {Unpublished Master's thesis},
}
@phdthesis{PhD2015,
title = {PhD Dissertation Title},
author = {LastName, Doctorate Another Author},
publisher = {Tokyo University},
year = {2015},
month = {May},
type = {Unpublished Doctoral dissertation},
}
```.text,
)
Typst #sys.version //needs to be 0.14.0
@Masters2010
@PhD2015
#bibliography(data, style: "apa")
