biblatex 日期順序

biblatex 日期順序

我經常biblatex引用 APA 中的一篇新聞報道。除了參考中的日期是月日、年的詳細資料之外,一切正常。我想要年、月、日。有任何想法嗎?

這是我調用套件的主要程式碼

\usepackage[style=authoryear,natbib]{biblatex}
\addbibresource{bibliography.bib}
\renewcommand*{\nameyeardelim}{\addcomma\space}

這是參考書目

@online{Cooperativa2024,
 author = "Cooperativa",
 year = "2024",
date = {2024-04-28},
entrysubtype = {newspaper},
 title = "Universidad Austral eval\'ua el despido de unos 300 docentes",
 journal = "Cooperativa",
 url = {https://cooperativa.cl/noticias/pais/educacion/universidades/universidad-austral-evalua-el-despido-de-unos-300-docentes/2024-04-15/131029.html},
}

在此輸入影像描述

答案1

如果您使用實際apa樣式,則日期格式將正確。

\documentclass{article}
\usepackage{csquotes} % recommended
\usepackage[english]{babel} % recommended (or with an appropriate language)
\usepackage[natbib=true, style=apa]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\citet{itzhaki}.
\printbibliography
\end{document}

程式碼的輸出

相關內容