plk / biblatex-apa

APA style for BibLaTeX
88 stars 48 forks source link

Sorting error with @presentation eventdate #233

Open jrmanrique opened 4 months ago

jrmanrique commented 4 months ago

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

plk commented 4 months ago

Fixed in DEV