我希望我的论文以 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
样式编码文件是复制粘贴以进行格式化。
我目前面临的问题:
- 未引用数字引用
- 在我的文本文件中,引用如下所示:(在这项研究(5,)中,对三个分类器进行了总结性比较)
注意:我希望我的引用用方括号引用,并且不应出现多余的“,”而且参考文献应该用序列号引用。
答案1
我正在使用 IEEEtran \usepackage[square,sort,comma,numbers]{natbib}
。我让它工作了。