每个人!
长期以来,我一直在使用比博特用于在我的文档中生成参考书目。现在,我正尝试迁移到比布拉特克斯在 Mac 中。
我按照以下步骤生成了参考书目,这似乎像 bibtex 一样简单。因此,对于一个简单的代码:
\documentclass{article}
% ---------------------------
\usepackage[utf8]{inputenc}
\usepackage[style=authoryear,
hyperref = true,
backref = true,
]{biblatex}
\bibliography{biblio}
% ---------------------------
\begin{document}
\cite{you2016}
\printbibliography
\end{document}
编译时,结果是:
在Texshop中编译bibtex,我总是得到同样的错误:
This is BibTeX, Version 0.99d (TeX Live 2015)
The top-level auxiliary file: Sem-Título.aux
I found no \citation commands---while reading file Sem-Título.aux
I found no \bibdata command---while reading file Sem-Título.aux
I found no \bibstyle command---while reading file Sem-Título.aux
(There were 3 error messages)
使用比博特包,我得到了预期的结果。使用比布拉特克斯?
提前致谢!
答案1
只需插入以下代码:
% !BIB TS-program = biber
% !BIB program = biber
在文档顶部使其起作用。