@@ -366,6 +366,72 @@ authors:
366366 <!-- given-names : 瀧 -->
367367 <!-- surname : 立花 -->
368368
369+ # # Contributor Roles
370+
371+ The [Contribution Role Taxonomy (CRediT)](https://credit.niso.org/contributor-roles) defines
372+ fourteen standard roles of authors. Each author can be annotated with one or more contribution
373+ roles.
374+
375+ 1. [conceptualization](https://credit.niso.org/contributor-roles/conceptualization)
376+ 2. [data-curation](https://credit.niso.org/contributor-roles/data-curation)
377+ 3. [formal-analysis](https://credit.niso.org/contributor-roles/formal-analysis)
378+ 4. [funding-acquisition](https://credit.niso.org/contributor-roles/funding-acquisition)
379+ 5. [investigation](https://credit.niso.org/contributor-roles/investigation)
380+ 6. [methodology](https://credit.niso.org/contributor-roles/methodology)
381+ 7. [project-administration](https://credit.niso.org/contributor-roles/project-administration)
382+ 8. [resources](https://credit.niso.org/contributor-roles/resources)
383+ 9. [software](https://credit.niso.org/contributor-roles/software)
384+ 10. [supervision](https://credit.niso.org/contributor-roles/supervision)
385+ 11. [validation](https://credit.niso.org/contributor-roles/validation)
386+ 12. [visualization](https://credit.niso.org/contributor-roles/visualization)
387+ 13. [writing-original-draft](https://credit.niso.org/contributor-roles/writing-original-draft)
388+ 14. [writing-review-editing](https://credit.niso.org/contributor-roles/writing-review-editing)
389+
390+ JATS also specifies three degrees which can be used to quantify the impact of a contribution :
391+
392+ 1. `Lead`
393+ 2. `Supporting`
394+ 3. `Equal` - for use if multiple equivalent leads
395+
396+ Together, these can be used to identify which authors materially contributed to the paper,
397+ such as through `formal-analysis` or `data-curation` and which authors contributed immaterially,
398+ such as through `supervision`. It also allows for saying if multiple people made the same
399+ kind of contribution, who took the lead.
400+
401+ ` ` ` yaml
402+ authors:
403+ - name: John Doe
404+ affiliation: [ 1 ]
405+ roles:
406+ - type: 'formal-analysis'
407+ degree: 'lead'
408+
409+ - name: John Boss
410+ affiliation: [ 1 ]
411+ roles:
412+ - type: 'funding-acquisition'
413+ degree: 'lead'
414+ - type: 'supervision'
415+ degree: 'lead'
416+ ` ` `
417+
418+ Roles are optional, and within roles, degrees are optional. It's possible to shorthand
419+ roles by using strings directly :
420+
421+ ` ` ` yaml
422+ authors:
423+ - name: John Doe
424+ affiliation: [ 1 ]
425+ roles:
426+ - 'formal-analysis'
427+
428+ - name: John Boss
429+ affiliation: [ 1 ]
430+ roles:
431+ - 'funding-acquisition'
432+ - 'supervision'
433+ ` ` `
434+
369435# # Affiliations
370436
371437Each affiliation requires an `index` and `name`.
0 commit comments