书目字符串'and'未翻译错误BibLaTeX

书目字符串'and'未翻译错误BibLaTeX

我的书目无法正常工作。我在 overleaf 中遇到了一堆错误:

Package biblatex Warning: Bibliography string 'and' untranslated at entry 'Grigorescu2020WebWild' on input line 47.
Package biblatex Warning: Bibliography string 'in' untranslated at entry 'Grigorescu2020WebWild' on input line 47.
Package biblatex Warning: Bibliography string 'volume' untranslated at entry 'Grigorescu2020WebWild' on input line 47.

我使用这个代码:

\usepackage[
backend=biber,
style=numeric,
hyperref=true,
natbib=true,
backref=false,
backrefstyle=three,
sortcites=false,
maxbibnames=50,
maxcitenames=3,
giveninits=true,
isbn=true,
url=true,
doi=true
]
{biblatex}

我通过以下方式导入了所有论文、文章和书籍门德利.bib 文件内部条目示例:

@inproceedings{Grigorescu2020WebWild,
    title = {{Web application honeypot published in the wild}},
    year = {2020},
    booktitle = {Proceedings - RoEduNet IEEE International Conference},
    author = {Grigorescu, Octavian and Sandescu, Cristian and Caba, Alexandru},
    volume = {2020-December},
    doi = {10.1109/RoEduNet51892.2020.9324870},
    issn = {20681038}
}

如您所见,这些无法识别的关键字以粗体文本呈现。

在此处输入图片描述

问题出在哪里,我所能找到的是,“and”是分隔作者的正确关键字,但 biblatex 仍然存在问题。

答案1

您的文档似乎加载babel

\usepackage{babel}

但您实际上从未设置文档语言。


可以将文档语言传递给文档类,如下所示

 \documentclass[12pt,oneside,paper=A4,DIV=15,BCOR=12mm,abstract=true,headsepline,headings=normal, english]{scrreprt}

或将其传递给babel

\usepackage[english]{babel}

假设您的文档是英文的。

相关内容