在此处输入图片描述我已阅读了几乎所有与我的问题相关的问题,但没有找到适合我的答案。我是 Latex 新手,无法弄清楚 biblatex 如何与 texstudio 配合使用。
我将参考书目改为 biblatex。标准 bib 工具改为 biber,高级设置中默认也改为 biber。我的 texstudio 是最新的。我的 miktex 版本是 32 位的(因此包含 biber)。
我的 bib 文件与 tex 文件位于同一目录中,我通过运行 pdfLatex-->biber-->pdfLatex-->pdfLatex 进行编译
这是运行我的 tex 文件的结果:
\documentclass[pt11,a4paper]{article}
\date{\today{} Vienna}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman,english]{babel}
\usepackage{graphicx}
\usepackage{amsmath,amssymb,amstext}
\usepackage[backend=biber,style=authoryear,sorting=nyt,natbib=true,hyperref=true]{biblatex}
\addbibresource{Citing.bib}
\usepackage{hyperref}
\usepackage[onehalfspacing]{setspace}
\begin{document}
test \parencite{kurano_growth_1990,}
\printbibliography
\end{document}
...结果如下... 进程已启动:pdflatex.exe -synctex=1 -interaction=nonstopmode "texstudio_xF4620".tex
Process exited normally
Process started: biber.exe "texstudio_xF4620"
INFO - This is Biber 2.1
INFO - Logfile is 'texstudio_xF4620.blg'
INFO - Reading 'texstudio_xF4620.bcf'
INFO - Found 1 citekeys in bib section 0
INFO - Processing section 0
INFO - Looking for bibtex format file 'Citing.bib' for section 0
ERROR - Cannot find 'Citing.bib'!
INFO - ERRORS: 1
Process exited with error(s)
Process started: pdflatex.exe -synctex=1 -interaction=nonstopmode "texstudio_xF4620".tex
Process exited normally
Process started: pdflatex.exe -synctex=1 -interaction=nonstopmode "texstudio_xF4620".tex
Process exited normally
引文只显示参考文献关键字,文档末尾没有参考书目。我的 bib 文件是否损坏了?我能以某种方式修复它吗?
已经感谢您的回答。