使用 biblatex 和 bibtex 后端将日期和月份添加到参考书目中

使用 biblatex 和 bibtex 后端将日期和月份添加到参考书目中

我正在使用 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=falseminimum将为basic您提供完整日期。

相关内容