@masterthesis
and @phdthesis
reference entries are incomplete
I am using @masterthesis
and @phdthesis
bib entries with notes field stating note = {[Unpublished doctoral dissertation]}
or note = {[Unpublished master's thesis]}
The APA guide states that format should be Lastname, I. (YYYY). Title [Unpublished note]. University. Source
However, the ones rendered in the typst doc has Lastname, I. (YYYY). Title only. The [Unpublished note] and University dont appear.
The snippets i use are:
Per section
#show bibliography.where(
): set par(
justify: true,
leading: 0.65em,
)
#show bibliography.where(
): set block(
above: 0em,
below: 1em,
)
#import "8_bib.typ": bib_state
#context bib_state.get()
In bibliography section
#let bib_state = state("bib_state",
bibliography("biblio.bib", style: "apa",
title: none))
Is there anything i could have forgotten? Other reference types are complete when rendered.