日期顺序 biblatex

日期顺序 biblatex

我正在使用biblatexAPA 引用新闻报道。除了参考文献中的日期是月日年这一点之外,其他都正常。我想要的是年月日。有什么想法吗?

这是我调用包的主要代码

\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}

代码输出

相关内容