了解 BibTeX 错误

了解 BibTeX 错误

TexWorks 中的 bibtex 命令表示

Warning--entry type for "Stratton12" isn't style-file defined
--line 359 of file bibs.bib
I was expecting a `,' or a `}'---line 369 of file bibs.bib
 :   
 :   year = {2012},
(Error may have been on previous line)
I'm skipping whatever remains of this entry
Repeated entry---line 629 of file bibs.bib
 : @inproceedings{Shi16
 :                     ,
I'm skipping whatever remains of this entry

事实上,我上传的文件包含 354 行这里!那么他是如何寻找第 629 行或第 359 行的呢?!

我认为year = {2012},或没什么问题@inproceedings{Shi16。有什么想法吗?

另外,我该如何解决类似的警告Warning--to sort, need author or key in RCSB

答案1

关于输入类型的警告告诉你输入错误

@techrepor

缺少t

第一个错误是

institution = {Center for Reliable and High-Performance Computing, University of Illinois at Urbana-Champaign}

重复输入错误是因为您有两个使用相同密钥的输入

 @inproceedings{Shi16,

第 315 行和第 257 行

排序警告表明,如果您没有提供要排序的名称,则无法按字母顺序对条目进行排序,因此您需要提供缺失的数据或使用未排序的样式。

相关内容