跳至主要内容

关于 CITATION 文件

您可以向您的仓库添加 CITATION 文件,以帮助用户正确引用您的软件。

关于 CITATION 文件

您可以将 CITATION.cff 文件添加到仓库的根目录,以便让其他人了解您希望他们如何引用您的工作。引用文件格式是包含人类和机器可读引用信息的纯文本。

CITATION.cff 文件示例

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Lisa"
  given-names: "Mona"
  orcid: "https://orcid.org/0000-0000-0000-0000"
- family-names: "Bot"
  given-names: "Hew"
  orcid: "https://orcid.org/0000-0000-0000-0000"
title: "My Research Software"
version: 2.0.4
doi: 10.5281/zenodo.1234
date-released: 2017-12-18
url: "https://github.com/github-linguist/linguist"

您的仓库上的 GitHub 引用提示将以以下格式显示 CITATION.cff 示例内容

APA

Lisa, M., & Bot, H. (2017). My Research Software (Version 2.0.4) [Computer software]. https://doi.org/10.5281/zenodo.1234

BibTeX

@software{Lisa_My_Research_Software_2017,
  author = {Lisa, Mona and Bot, Hew},
  doi = {10.5281/zenodo.1234},
  month = {12},
  title = {{My Research Software}},
  url = {https://github.com/github-linguist/linguist},
  version = {2.0.4},
  year = {2017}
}

请注意,以上示例生成的是软件引用(即 BibTeX 中的 @software 类型,而不是 @article)。

有关更多信息,请参阅引用文件格式网站。

当您将 CITATION.cff 文件添加到仓库的默认分支时,一个链接会自动添加到仓库登录页面右侧边栏中,标签为“引用此仓库”。这使得其他用户可以轻松引用您的软件项目,使用您提供的信息。

Screenshot showing the landing page for a repository. The "Cite this repository" link in the right sidebar is highlighted with a dark orange outline and a dropdown menu with the citation details is expanded underneath.

引用软件以外的内容

如果您希望 GitHub 引用信息链接到其他资源(例如研究文章),则可以在 CFF 中使用 preferred-citation 覆盖,并使用以下类型。

资源CFF 类型BibTeX 类型APA 注释
期刊文章/论文article@article不适用
书籍book@book不适用
小册子(装订但未出版)pamphlet@booklet不适用
会议文章/论文conference-paper@inproceedings[会议论文]
会议记录conference, proceedings@proceedings不适用
数据集data, database@misc[数据集]
杂志文章magazine-article@article不适用
手册manual@manual不适用
其他/通用/其他generic, 任何其他 CFF 类型@misc不适用
报纸文章newspaper-article@article不适用
软件software, software-code, software-container, software-executable, software-virtual-machine@software[计算机软件]
报告/技术报告report@techreport不适用
未出版unpublished@unpublished不适用

扩展的 CITATION.cff 文件描述了软件,但将研究文章链接为首选引用

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Lisa"
  given-names: "Mona"
  orcid: "https://orcid.org/0000-0000-0000-0000"
- family-names: "Bot"
  given-names: "Hew"
  orcid: "https://orcid.org/0000-0000-0000-0000"
title: "My Research Software"
version: 2.0.4
doi: 10.5281/zenodo.1234
date-released: 2017-12-18
url: "https://github.com/github-linguist/linguist"
preferred-citation:
  type: article
  authors:
  - family-names: "Lisa"
    given-names: "Mona"
    orcid: "https://orcid.org/0000-0000-0000-0000"
  - family-names: "Bot"
    given-names: "Hew"
    orcid: "https://orcid.org/0000-0000-0000-0000"
  doi: "10.0000/00000"
  journal: "Journal Title"
  month: 9
  start: 1 # First page number
  end: 10 # Last page number
  title: "My awesome research software"
  issue: 1
  volume: 1
  year: 2021

上面的 CITATION.cff 文件示例将在 GitHub 引用提示中生成以下输出

APA

Lisa, M., & Bot, H. (2021). My awesome research software. Journal Title, 1(1), 1. https://doi.org/10.0000/00000

BibTeX

@article{Lisa_My_awesome_research_2021,
  author = {Lisa, Mona and Bot, Hew},
  doi = {10.0000/00000},
  journal = {Journal Title},
  month = {9},
  number = {1},
  pages = {1--10},
  title = {{My awesome research software}},
  volume = {1},
  year = {2021}
}

引用数据集

如果您的仓库包含数据集,则可以在 CITATION.cff 文件的顶层设置 type: dataset,以便在 GitHub 引用提示中生成数据引用字符串输出。

其他引用文件

GitHub 引用功能还将检测少量其他文件,这些文件通常由社区和项目用于描述他们希望如何引用他们的工作。

GitHub 将在“引用此仓库”提示中链接到这些文件,但不会尝试将其解析为其他引用格式。

# Note these are case-insensitive and must be in the root of the repository
CITATION
CITATIONS
CITATION.bib
CITATIONS.bib
CITATION.md
CITATIONS.md

# CITATION files for R packages are typically found at inst/CITATION
inst/CITATION

引用格式

我们目前支持 APA 和 BibTeX 文件格式。

您是否正在寻找其他引用格式?GitHub 使用 Ruby 库来解析 CITATION.cff 文件。您可以在ruby-cff 仓库中请求其他格式,或自行贡献。