尝试使用 biblatex 在 LaTeX 中引用但不会创建参考书目或插入引文

尝试使用 biblatex 在 LaTeX 中引用但不会创建参考书目或插入引文

我是新用户,正在尝试使用 biblatex 在 LaTeX 中引用。目前,我的所有代码都给我的引用作为 bibtexkey 放在括号中放入我的文本中,或者什么都没有。它也没有形成参考书目。我构建了 LaTeX-->PDF,然后是 LaTeX--> bibtex ,然后再次构建了 LaTeX-->PDF。.bib 文件已插入并创建了一个 .bbl 文件。我正在使用 JabRef 来管理我的参考文献。我不明白我哪里做错了。下面是我的最小示例。

\documentclass {report}

\usepackage[backend=biber, 
    style=authoryear, 
    maxcitenames=2, 
    sorting=nyt,
    backref=true]{biblatex}

\bibliography{refs}

\let\cite\parencite

\begin{document}

Just to check referencing \citation{Bian2008}

\printbibliography

\enddocument

答案1

你应该写:

 \addbibresource{refs.bib}

(带扩展名)而不是`\bibliography{refs},然后运行 ​​Biber,正如 Torbjøn T. 所说。

相关内容