我正在使用 biblatex/natbib 和 bibtex 的设置,我想将日期和月份添加到参考书目中。有没有简单的方法可以做到这一点?
使用下面的 MWE,我目前得到 - 没有日期和月份,
\documentclass{article}
\usepackage[backend=bibtex,
dateabbrev=false,
style=authoryear,
natbib=true]%
{biblatex}
\begin{filecontents}{references.bib}
unpublished{Book,
title = {This is a Title},
author = {Author, Some},
note={This is a note about this specific version}
date = 2005,
month = feb,
day = 14,
}
\end{filecontents}
\addbibresource{references.bib}
\begin{document}
Cf. \citep[19]{Book}.
\printbibliography
\end{document}
答案1
您将需要使用date
具有YYYY-MM-DD
格式的字段。
@unpublished{Book,
title = {This is a Title},
author = {Author, Some},
note = {This is a note about this specific version},
date = {2005-02-14},
}
但你仍然不会在参考书目中看到完整的日期。这与mergedate
,请参阅https://github.com/plk/biblatex/issues/520
目前,mergedate=false
或minimum
将为basic
您提供完整日期。