书目字符串‘inlang’未翻译(biblatex)错误 BibLaTeX

书目字符串‘inlang’未翻译(biblatex)错误 BibLaTeX

尝试编译我的文档时出现此错误:

输入行 19 的条目“noauthor_list_2021”处的参考书目字符串“inlang”未翻译(biblatex)。

梅威瑟:

main.tex 文件:

\documentclass[a4paper, 11pt]{article}
\begin{filecontents}{bib.bib}
@misc{noauthor_list_2021,
    title = {List of numeral systems},
    copyright = {Creative Commons Attribution-ShareAlike License},
    url = {https://en.wikipedia.org/w/index.php?title=List_of_numeral_systems&oldid=1025510791},
    abstract = {This is a list of numeral systems, that is, writing systems for expressing numbers.},
    language = {en},
    urldate = {2021-06-01},
    journal = {Wikipedia},
    month = may,
    year = {2021},
    note = {Page Version ID: 1025510791},
}
\end{filecontents}

\usepackage[backend=bibtex,style=chicago-authordate,sorting=nty]{biblatex}
\usepackage[nottoc]{tocbibind}
\addbibresource{bib.bib}

\begin{document}
    There is hundreds of numeral systems\cite{noauthor_list_2021}.

    \printbibliography
\end{document}

答案1

您以错误的方式加载了 biblatex-chicago。它应该作为包加载。如果您只设置样式,则缺少所需的部分。我建议切换到 biber 后端。

\documentclass[a4paper, 11pt]{article}

\usepackage[authordate,backend=bibtex,sorting=nty]{biblatex-chicago}
\usepackage[nottoc]{tocbibind}
\addbibresource{bib.bib}

\begin{document}
    There is hundreds of numeral systems\cite{noauthor_list_2021}.

    \printbibliography
\end{document}

相关内容