我在 bib 文件中有这个条目:
@book{griepenkerl2002,
title="Intensity distribution for diffraction by a slit and Intensity pattern for diffraction by a grating",
author="Griepenkerl, Kordt",
year="2002",
editor="In: Handbook of physics. John W Harris; Walter Benenson; Horst Stöcker; Holger Lutz",
publisher="Springer"
}
不管我怎么扭曲它,它都不会在参考文献列表中显示编辑者的名字,这非常重要。我只是得到
在文档的最后我有:
\bibliographystyle{unsrt}
\bibliography{bib}
有什么想法我可以如何显示完整的信息?
谢谢
答案1
您应该使用@incollection
条目类型,而不是@book
条目类型。此外,请同时为该条目提供合适的字段chapter
。pages
@book{griepenkerl2002,
title = "Intensity distribution for diffraction by a slit and
Intensity pattern for diffraction by a grating",
author = "Griepenkerl, Kordt",
year = 2002,
booktitle = "Handbook of Physics",
editor = "Walter Benenson and John W. Harris and Horst Stöcker
and Holger Lutz",
publisher = "Springer",
address = "New York",
}
}