我想引用 SIGGRAPH 2002(计算机图形学年度会议)第 36 门课程笔记的第 2 章,但我不明白它应该是什么 biblatex 条目类型。
课程笔记有明确的出版商和编辑,因此并不@unpublished
像建议的那样这里。它不是会议论文集(或者是?我不确定课程是否是会议论文集的一部分),所以它不是@inproceedings
。它不是一本书,等等,等等……
我犹豫着是否把它放进去,@misc
因为会议课程笔记应该足够常见,才有指定的条目类型。
会议课程笔记有 biblatex 条目类型吗?如果是,那有哪一种?
答案1
这个课程 (https://www.csee.umbc.edu/~olano/s2002c36/) 似乎没有包含在有关 SIGGRAPH 2002 的任何官方出版物中。我能找到的唯一提及是http://www.siggraph.org/s2002/conference/courses/crs36.html。
您可以简单地使用@online
。但@misc
也可以。我甚至可以接受,@unpublished
因为整个内容似乎并没有像书籍那样出版,更不用说@article
同行评审了。
@inproceedings
(和@proceedings
)条目适用于作品/文章出现在以下合集中第 29 届计算机图形学和交互技术年会论文集。会议主席可以编辑会议记录,并由会议组织者(可能由相关出版商)出版或通过会议组织者出版。这些条目类型本质上分别是@incollection
(的增强版本@collection
,其中的字段用于提供有关会议的更多详细信息(地点、会议日期,而不是书籍的出版/印刷日期等)。
最终,这取决于您所寻求的输出和您的风格。
答案2
inproceedings
好问题!我无数次遇到过这个问题,当我需要使用会议、主题演讲或研讨会的参考资料时,我总是会想起这个问题。
我通常喜欢下面这样(以尼尔森为例):
@InProceedings{nielsen1994usabilityconference,
author = {Jakob Nielsen},
title = {Usability inspection methods},
booktitle = {Conference companion on Human factors in computing
systems - {CHI} {\textquotesingle}94},
year = {1994},
date = {1994-04-24},
eventtitle = {CHI {\textquotesingle}94 Conference Companion on Human
Factors in Computing Systems},
series = {CHI {\textquotesingle}94},
publisher = {{ACM} Press},
location = {Boston, Massachusetts, USA},
isbn = {0-89791-651-4},
pages = {413--414}, % noting the pages where i found it.
doi = {10.1145/259963.260531},
url = {http://doi.acm.org/10.1145/259963.260531},
acmid = {260531},
address = {New York, NY, USA},
groups = {Online Articles}, % personal organization
numpages = {2},
urldate = {1970-01-01},
}
另一个例子:
@InProceedings{bhor2016analysisofweb,
author = {R. V. Bhor and H. K. Khanuja},
title = {Analysis of web application security mechanism and Attack
Detection using Vulnerability injection technique},
booktitle = {2016 International Conference on Computing Communication
Control and automation (ICCUBEA)},
year = {2016},
pages = {1-6},
doi = {10.1109/ICCUBEA.2016.7860004},
groups = {Online Articles},
keywords = {Browsers;Computer crime;Databases;Monitoring;
Payloads;Servers;Attack;Denial-of-service;SQL injection;
Vulnerability;web application},
urldate = {1970-01-01},
}
最终,只要您确保信息正确,这完全由您决定。