BibLaTeX 的问题

BibLaTeX 的问题

我以前用 BibTeX 来写参考书目,但后来决定改用 BibLaTeX。我使用 MikTeX,所以我费了好大劲才找到并创建了 Biber 的排版快捷方式,我想我已经准备好了。

通过下面的例子,文本可以编译,但引用键以粗体显示,并且根本没有打印参考书目。

我尝试更新 MikTeX(没有帮助,现在我似乎无法返回 BibTeX)我已经多次运行过 pdfLaTeX、Biber、pdfLaTeX、pdfLaTex 和其他组合。我不知道我可能做错了什么。有什么见解吗?

我像这样设置我的文件:

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

\begin{document}
text text text \cite{smith2017computer}.

\printbibliography

\end{document}

文件中的引用BibDB.bib如下:

@article{smith2017computer,
    title={Computer stuff},
    author={Smith, John Q and Doe, Jane},
    journal={Computer Scientist},
    volume={34},
    number={12},
    pages={54--63},
    year={2017},
    publisher={Workhouse}
    }

当我用这个运行 biber 时,收到错误消息:

Cannot find control file 'Example.bcf'! - did you pass the "backend=biber" option to BibLaTeX?

完整.blg阅读

[1] Config.pm:354> INFO - This is Biber 2.7
[2] Config.pm:357> INFO - Logfile is 'Example.blg'
[263] biber-MSWIN64:303> INFO - === 
[1951] Utils.pm:180> ERROR - Cannot find control file 'Example.bcf'! - did you pass the "backend=biber" option to BibLaTeX?
[1952] Biber.pm:113> INFO - ERRORS: 1

我确实传递了那个论点,所以我不知道该做什么或如何解决它。

相关内容