逐字日期输入

逐字日期输入

我收到了一份包含以下条目的参考书目(docx),我正尝试将其放入 LaTeX 中:

薄命,《凤城所录》,推测始刊于乾隆晚期。辽海丛书,沈阳:辽沈书社,1986:273-283。

我创建了一个参考书目条目,这里是 MWE:

\documentclass{article}
\usepackage{biblatex}
\begin{filecontents}{literature.bib}
@incollection{bo1986,
    author={Bo, Ming},
    title = {Fengcheng suolu},
    date = {1986 [presumably first published in late Qianlong era]},
    booktitle = {Liaohai congshu},
    location = {Shenyang},
    publisher = {Liaoshen shushe},
    pages = {273--283}
}
\end{filecontents}
\bibliography{literature}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

Biber 警告日期输入无效并忽略日期,导致参考书目中出现 (nd)。我如何添加presumably first published in late Qianlong era出版日期?

答案1

使用year(这是一个文字字段)代替date

\documentclass{article}
\usepackage{biblatex}
\begin{filecontents}{literature.bib}
@incollection{bo1986,
    author={Bo, Ming},
    title = {Fengcheng suolu},
    year = {1986 [presumably first published in late Qianlong era]},
    booktitle = {Liaohai congshu},
    location = {Shenyang},
    publisher = {Liaoshen shushe},
    pages = {273--283}
}
\end{filecontents}
\bibliography{literature}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

biblatex 手册建议不要使用该字段,year并提倡使用该date字段,但后者不会逐字逐句地接受文本。使用(旧版)year字段时,biber 还警告说,条目可能无法正确排序,但它在 pdf 中看起来与预期一致。

相关内容