Bibtex 说我在@unpublished 中缺少一个字段名称

Bibtex 说我在@unpublished 中缺少一个字段名称

通过谷歌搜索,我发现建议对在线找到的随机文章使用 @unpublished。必填字段是注释、作者和标题。那么为什么以下 bib 条目会出错呢?

@unpublished(de_finetti,
author = {Michael Newton},
title = {Genesis of Bayesian Analysis: Exchangeability and de Finetti's Theroem},
note = {Accessed 1-28-14}
}

给出错误

This is BibTeX, Version 0.99c (TeX Live 2009/Debian)
The top-level auxiliary file: main.aux
The style file: plain.bst
Database file #1: biblio.bib
You're missing a field name---line 5 of file biblio.bib
 : 
 : }
(Error may have been on previous line)
I'm skipping whatever remains of this entry

答案1

您有(而不是{之后@unpublished


顺便说一下,你应该修改该title字段:

title = {Genesis of {Bayesian} Analysis: Exchangeability and de {Finetti's} Theorem},

因此“Bayesian”和“Finetti”不能按照书目样式小写。

以下是您参赛后可获得的奖励:

在此处输入图片描述

以下是修改后的条目及其结果:

@unpublished{de_finetti,
author = {Michael Newton},
title = {Genesis of {Bayesian} Analysis: Exchangeability and de {Finetti's} Theorem},
note = {Accessed 1-28-14}
}

在此处输入图片描述

您可以添加领带:de~{Finetti's}但这可能会导致糟糕的换行。

相关内容