所以我在 JabRef 数据库中有我的引文,名为“Biblio.bib”。我试图创建引文,但没有成功。
\documentclass[12pt, letterpaper]{article}
\usepackage[spanish,activeacute]{babel}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\begin{document}
Easdijasjdlkasdjl,znmxcm,nzxc,nmxcv,nmxcv,nmvxc,mnxcv,nmxvcljksvdoiupWE;JLK;JDS;LKJSDF;LJKASDF;LKJASDF;LJKADSFLJKADSFLJKSAFD;;FLSSL\cite{SOMEONE1998}.
\section{Bibliografía}
\printbibliography
\enddocument
我收到此消息 Proceso iniciado: /usr/texbin/bibtex "ReporteLujánEnLatex".aux
This is BibTeX, Version 0.99d (TeX Live 2015)
The top-level auxiliary file: ReporteLujánEnLatex.aux
I found no \citation commands---while reading file ReporteLujánEnLatex.aux
I found no \bibdata command---while reading file ReporteLujánEnLatex.aux
I found no \bibstyle command---while reading file ReporteLujánEnLatex.aux
(There were 3 error messages)
进程终止并出现错误
答案1
如果你修复这个例子,它就可以工作了:
放
\end{document}
而不是错误的
\enddocument
并在 \begin{document} 之前添加
\usepackage{biblatex}
\bibliography{Biblio}
请注意,这些行的顺序不是您在注释中写的顺序。您必须先加载包。