biblatex-apa icon indicating copy to clipboard operation
biblatex-apa copied to clipboard

Sorting error with @presentation eventdate

Open jrmanrique opened this issue 11 months ago • 1 comments

Description

I encountered an issue with biblatex-apa where two works of the same author does not follow chronological order from earliest to most recent when using @presentation's eventdate; using date in lieu fixes sorting. A workaround redefining the sorting template was presented here.

MWE

\documentclass{article}

\usepackage[style=apa]{biblatex}
\addbibresource{bibliography.bib}

\begin{document}

\nocite{*}
\printbibliography

\end{document}
@thesis{test1,
  author = {Doe, John},
  year = 2022,
  title = {Test title},
  type = {Unpublished manuscript},
  institution = {Test Institution},
}

@presentation{test2,
  author = {Doe, John},
  eventdate = {2023-08-23/2023-08-25},
  title = {Sample title},
  titleaddon = {Paper presentation},
  eventtitle = {Test Event},
  venue = {Test Venue},
}

Observed Output

img

jrmanrique avatar Mar 15 '24 19:03 jrmanrique

Fixed in DEV

plk avatar Mar 17 '24 13:03 plk