Citeproc YAML 用于法律案例引用

Citeproc YAML for a legal case citation

我正在使用 Pandoc 并想引用一个法律案例。我想在YAML中输入必要的数据,类似这样:

  - title: One-click science marketing
  volume: '11'
  URL: http://dx.doi.org/10.1038/nmat3283
  DOI: 10.1038/nmat3283
  issue: '4'
  container-title: Nature Materials
  publisher: Nature Publishing Group
  author:
  - family: Fenner
    given: Martin
    orcid: 0000-0003-1419-2405
  page: 261-263
  id: fenner2012a
  type: article-journal
  issued:
    date-parts:
      - 2012
      - 3

(引用:Blog entry by Martin Fenner

经过长时间的研究,我仍然不知道哪些字段可以用于法律案件。有几个法律案件的 CLS,但我没有找到他们期望的字段的任何信息。我如何在不通读 CLS 文件的情况下找到它们,我很难理解它?

感谢您的帮助!

您可以在法律案件中使用的一些字段显示在导出到 CSL JSON 然后转换为 CSL YAML 的 Zotero 条目中。您仍然需要找出哪些 CSL 文件支持这些字段。 https://forums.zotero.org/11/ 可能会提供进一步的帮助。

---
references:
- id: a
  type: legal-case
  author:
  - family: Author
    given: Al
  issued:
  - year: 1999
  title: Title
  container-title: Reporter
  authority: Court
  page: 123-456
  volume: 9
  number: Docket Number
  references: History
  abstract: Abstract
  language: en-US
...