答案1
“正确”条目的确切格式.bib
至少取决于以下两个因素
- 您期望的输出。(您想要
<number>
在标题之前还是之后加上“PEP”?您是否希望引用的条目不是作者姓名而是“PEP<number>
”?)。 - 您使用的参考书目样式。
我发现对于支持url
URL字段的样式
@techreport{pep8,
author = {Guido van Rossum and Barry Warsaw and Nick Coghlan},
title = {Style Guide for {Python} Code},
year = {2001},
type = {PEP},
number = {8},
url = {https://www.python.org/dev/peps/pep-0008/},
}
@techreport{pep20,
author = {Tim Peters},
title = {The {Zen} of {Python}},
year = {2004},
type = {PEP},
number = {20},
url = {https://www.python.org/dev/peps/pep-0020/},
}
效果很好。但这主要是因为我认为@techreport
理论上是 PEP 的最佳类型,所以我准备接受输出样式给我的良好效果(在合理范围内)。