typst / hayagriva

Rusty bibliography management.
Apache License 2.0
337 stars 54 forks source link

one-off error in citing web url in bibliography apa format #51

Closed Sycration closed 1 year ago

Sycration commented 1 year ago

In main.typ:

#cite("huh")
#bibliography("huh.yml", style: "apa")

In huh.yml

huh:
  type: Web
  title: Webpage
  date: 2023-01-01
  url: 
    value: https://example.com
    date: 2023-01-01

What renders: image

PgBiel commented 1 year ago

Possibly problematic code:

https://github.com/typst/hayagriva/blob/04f13c1682ef9c8a4dba1d39f519444c4fb3f2dc/src/style/apa.rs#L421-L426

Note that day + 1 is used earlier in the code:

https://github.com/typst/hayagriva/blob/04f13c1682ef9c8a4dba1d39f519444c4fb3f2dc/src/style/apa.rs#L377-L382