我有以下示例:
\usepackage[
backend=bibtex,
style=ieee,
bibencoding=ascii
backref=true
hyperref=true
% style=alphabetic
% style=reading
]{biblatex}
\addbibresource{bibilography.bib}
\begin{document}
\cite{carl_venture}
\printbibliography
\end{document}
在 bibilography.bib 中:
@book{carl_venture,
keywords = {call},
author = "Carl Venture",
title = "The adventures of Carl Venture.",
publisher = "C.V.",
%volume = "",
%number = "",
%series = "",
%address = "",
edition = "3",
year = "1999",
%month = "",
%note = "",
我明白了:
[#] Carl Venture,《Carl Venture 的冒险》。CV
缺少年份和版本。如何在不更改 IEEE 样式的情况下在参考书目中启用这些字段?
答案1
在 gusbrs 的帮助下,我唯一做的事情就是按照他/她的建议,删除了注释行,并且没有任何问题。
因此,请小心 .bib 文件中的注释行。