APA でニュース レポートを引用するために使用していますbiblatex
。参照の日付が月日、年であるという詳細を除いて、すべて正常に動作しています。年、月日としたいのですが。何かアイデアはありますか?
これはパッケージを呼び出すためのメインコードです
\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}