无年限,参考书目中的未知字段

无年限,参考书目中的未知字段

我正在用 LaTeX 写一篇论文,发现一个问题,例如,当参考书籍/论文/等的日期未知时,参考书目应该显示“sine anno”,但我无法做到这一点。

小 MWE:

\documentclass{article}
\usepackage[style=ieee,backend=biber]{biblatex}
\addbibresource{mwe.bib}


\begin{document}
Lorem ipsum~\cite{mech_vibr}.

\printbibliography 
\end{document}

其中mwe.bib包含:

@book{mech_vibr,
author = {S. Rao, Singiresu},
title = "{Mechanical Vibrations}",
date = {sine anno},
edition = {Fifth},
publisher = {Prentice Hall},
isbn = {978-0-13-212819-3},
}

先感谢您!

答案1

如果字段不是 yyyy-mm-dd 格式,则使用year代替。请参阅手册第 35 页,第 2.3.8 节。datebiblatex

如果你用英语写作,可以考虑使用“nd”表示“无日期”(这是芝加哥格式手册的推荐)。

PS - WorldCat 告诉我这本书出版于 2011 年,但也许你只是用它作为一个例子。

相关内容