在 IEEE 格式的 Latex 参考书目中引用参考文献样式(参考文献序列编号、花括号而不是方括号)时遇到问题

在 IEEE 格式的 Latex 参考书目中引用参考文献样式(参考文献序列编号、花括号而不是方括号)时遇到问题

我希望我的论文以 IEEE 格式引用,我使用以下代码。

main.bib文件

@article{cummings ,
author = {Arthur B Cummings and David Eftekhary and Frank G House},
title = {The accurate determination of college students’
coefficients of friction},
journal = {Journal of Sketchy Physics},
volume = {13},
year = {2003},
number = {2},
pages = {46--129}
}

@article{Dimitrios ,
author = {Dimitrios Ververidis and Constantine Kotropoulos},
title = {Emotional speech recognition: Resources, features, and methods’},
journal = {Speech Communication},
volume = {48},
year = {2006},
%number = {2},
pages = {Speech Communication}
}


@article{Bjorn ,
author = {Bjorn Schuller and Bogdan Vlasenko and Florian Eyben and Gerhard Rigoll and Andreas Wendemuth},
title = {Acoustic Emotion Recognition: A Benchmark Comparison of Performances'},
journal = { Cognitive Systems, IESK},
%volume = {13},
year = {2009},
%number = {2},
%pages = {46--129}
}

Thesis_main.tex文件

\bibliographystyle{IEEEtran}
\bibliography{main}

结尾

笔记:

我的书目是在main.bib文件中创建的,并且我的主要文档功能在文件中调用Thesis_main.tex,代码是相应地共享的,尽管IEEEtran样式编码文件是复制粘贴以进行格式化。

我目前面临的问题:

  1. 未引用数字引用
  2. 在我的文本文件中,引用如下所示:(在这项研究(5,)中,对三个分类器进行了总结性比较)

注意:我希望我的引用用方括号引用,并且不应出现多余的“,”而且参考文献应该用序列号引用。

答案1

我正在使用 IEEEtran \usepackage[square,sort,comma,numbers]{natbib}。我让它工作了。

相关内容