使用 biblatex 引用 @inproceedings 的正确方法是什么?

使用 biblatex 引用 @inproceedings 的正确方法是什么?

@inproceedings使用 biblatex引用的正确方法是什么?

更具体地说,许多计算机科学论文引用似乎都使用诸如“第 28 届 ACM/IEEE 计算机科学逻辑研讨会论文集”之类的书名。对于 biblatex 字段,该如何分解此书名?

以下是 、 和 的几种组合booktitlebooksubtitle基于booktitleaddonbiblatex 模型,哪种做法是最佳实践?

@inproceedings{key,
  ...,
  booktitle = {Proceedings of the 28th Annual ACM/IEEE Symposium on Logic in Computer Science},
  ...
}

@inproceedings{key,
  ...,
  booktitle = {Logic in Computer Science},
  booksubtitle = {Proceedings of the 28th Annual ACM/IEEE Symposium}, 
  ...
}

@inproceedings{key,
  ...,
  booktitle = {Logic in Computer Science},
  booktitleaddon = {Proceedings of the 28th Annual ACM/IEEE Symposium}, 
  ...
}

答案1

示例来自biblatex-examples.bib

@inproceedings{salam,
  author       = {Salam, Abdus},
  editor       = {Svartholm, Nils},
  title        = {Weak and Electromagnetic Interactions},
  date         = {1968},
  booktitle    = {Elementary particle theory},
  booksubtitle = {Relativistic groups and analyticity},
  booktitleaddon= {Proceedings of the Eighth Nobel Symposium},
  eventdate    = {1968-05-19/1968-05-25},
  venue        = {Aspen{\"a}sgarden, Lerum},
  publisher    = {Almquist \& Wiksell},
  location     = {Stockholm},
  pages        = {367-377},
}

因此,如果有专门的标题字段,标准似乎是将“... 的会议录”部分放入该(book)titleaddon字段。

如果没有其他可用标题,那么最好将其2013 28th Annual ACM/IEEE Symposium on Logic in Computer Science填入该title字段 - 毕竟我们不想有一个空白的title字段。

@proceedings{lics,
  title        = {2013 28th Annual ACM/IEEE Symposium on Logic in Computer Science},
  shorttitle   = {LICS},
  eventdate    = {2013-06-25/2013-06-28},
  venue        = {New Orleans, Louisiana},
  isbn         = {978-1-4799-0413-6},
  publisher    = {IEEE Computer Society},
  date         = {2013},
}
@inproceedings{pattinson,
  author      = {Pattinson, Dirk},
  title       = {The Logic of Exact Covers},
  subtitle    = {Completeness and Uniform Interpolation},
  crossref    = {lics},
  pages       = {418-427},
}

另一个解决方案是您的第三个想法,尽管它并不反映会议记录本身中给出的标题信息。

@proceedings{lics,
  booktitle    = {Logic in Computer Science},
  booktitleaddon = {Proceedings of the 28th Annual ACM/IEEE Symposium}, 
  shorttitle   = {LICS},
  eventdate    = {2013-06-25/2013-06-28},
  venue        = {New Orleans, Louisiana},
  isbn         = {978-1-4799-0413-6},
  publisher    = {IEEE Computer Society},
  date         = {2013},
}

相关内容