biblatex-apa
biblatex-apa copied to clipboard
Sorting error with @presentation eventdate
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
Fixed in DEV