CSL YAML 中的 @Misc 等价物

@Misc equivalent in CSL YAML

我想从我的 BiBTeX 记录迁移:

@Misc{        propi-records-atletisme-en,
  author    = "Bordoy, Xavier",
  title     = "Athletics records",
  url       = "http://somenxavier.xyz/public/blog/fitxers/athletics-races.pdf",
  year = "2016"
}

到 CSL YAML:

references:
- type: "Misc"
  id: "propi-records-atletisme-en"
  author:
  - family: "Bordoy"
    given: "Xavier"
  title: "Athletics records"
  issued:
     year: "2016"
  URL: "http://somenxavier.xyz/bitacola/blog/athletics-races.pdf"

但是当我将它编译成 pandoc 时,我得到:

Error parsing references: 'Misc' is not a valid reference type

那么,什么等同于@Misc?

CSL 比标准 bibtex (here's a full list) 有更多的项目类型,所以没有一个 @misc 等价物,但对于你的例子中的网页,你只需使用 type: "webpage"