在我的电气工程博士论文的参考书目中,我有一些在会议研讨会上口头介绍的文章条目(但不在主要会议轨道上)。我想引用研讨会的名称和主要会议的名称。我使用的是 BibLaTeX 和classicthesis
。到目前为止,我使用了@InProceedings
具有以下字段的条目(示例):
@InProceedings{citation_key,
title = article_title,
author = list_of_authors,
booktitle = name_of_main_conference,
series = name_of_workshop,
year = the_year,
}
特别是,我想知道我是否根据“惯例”正确使用了booktitle
和series
字段(如果有的话)。
编辑:例如,我已经定义了以下内容。
@InProceedings{smith:2016:eclws,
author = {Smith, John},
booktitle = {European Conference on Life},
series = {Workshop on the Meaning of 42},
title = {{Great Article}},
year = {2016}
}
使用 BibLaTeX 排版如下style=ieee
:
[12] J. Smith,《伟大的文章》,载于《欧洲生命会议》,《42 的意义研讨会》,2016 年。
我不太喜欢爵士部分,因此我才提出最初的问题。
答案1
从技术上讲,@inproceedings
只有当文章确实出现在官方会议论文集时,它才是正确的条目类型。当然,你仍然可以(滥用)它。
@inproceedings{smith:2016:eclws,
author = {Smith, Jane},
title = {{Great Article}},
year = {2016},
maintitle = {European Conference on Life},
booktitle = {Workshop on the Meaning of 42},
}
您可以使用booktitle
和maintitle
来格式化会议和研讨会信息,如上所示,或者booktitle
和booksubtitle
如下所示
booktitle = {European Conference on Life},
booksubtitle = {Workshop on the Meaning of 42},
我更喜欢maintitle
/booktitle
方法,但这可能只是个人品味问题。
如果会议名称和研讨会使得查找文章变得不那么容易,而你又因为其他原因(你可能想在简历、拨款申请等中显示它们)不必包含它们,你也可以删除这些信息,只显示真正重要的信息来查找文章。如果它有 URL,
@online{smith:2016:eclws,
author = {Smith, Jane},
title = {{Great Article}},
year = {2016},
url = {http://example.ed/~smith/great2006},
urldate = {2017-07-08},
}
可能就足够了。