biblatex 的参考书目编译错误

biblatex 的参考书目编译错误

开始使用 biblatex 库后,bibtex 文件无法再进行编译。

这是我的 tex 文件:

\documentclass{article}
\usepackage[style=authortitle-icomp,natbib=true,sortcites=true, block=space]{biblatex}
\bibliography{item}
\begin{document}
Lorem\footcite{helbing_stochastic_1996} ipsum dolor sit amet, consectetur adipiscing elit.
\printbibliography[title=Works Cited] %(5)
\end{document}}

以下是我的参考书目文件:

@article{helbing_stochastic_1996,
    title = {A stochastic behavioral model and a ‘microscopic’foundation of evolutionary game theory},
    volume = {40},
    number = {2},
    journal = {Theory and decision},
    author = {Helbing, D.},
year = {1996},
pages = {149–179}
}

脚注引用对我来说非常重要,因此使用 biblatex 至关重要。

答案1

biblatex 如何处理字符取决于您使用的后端(BiBTeX 或 biber),有关详细信息,请参阅手册中的第 2.4.3 节“排序和编码问题”。

如果您更改

title = {A stochastic behavioral model and a ‘microscopic’foundation of evolutionary game theory},

title = {A stochastic behavioral model and a 'microscopic' foundation of evolutionary game theory},

}还请注意,即使它不会破坏编译,LaTeX 文件的最后一行也包含太多内容。

相关内容