CSL YAML中的@Misc等效项

时间:2019-06-12 18:12:49

标签: pandoc bibtex bibliography csl pandoc-citeproc

我想从我的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?

1 个答案:

答案 0 :(得分:1)

CSL的项目类型比标准bibtex(here's a full list)多,因此没有单个@misc等效项,但是对于示例中的网页,您只需使用type: "webpage"