APA reference - why is the "unpublished thesis" tag missing?

@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.

Hi there @argh

In order to help us help you, could you please ensure you provide a minimum working example (MWE) that we could try to compile and then provide insight.

Since your code does not compile, mainly because of:

// Missing file
#import "8_bib.typ": bib_state
// Missing file
bibliography("biblio.bib", ...)

it is impossible to really replicate the issue. Best way to do it is to create a separate .typ file and paste all the code snippets that reproduce the problem into, ensure it compiles and then paste on the forum. The .bib file or content would also be useful.

Thanks :wink: