libero / editor

Expedite your production workflow with our open tools and management system
MIT License
10 stars 0 forks source link

Equal contributor status #29

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

Two or more authors may be tagged as having contributed equally. This has nothing to do with the contributions that are actually listed for these authors.

User Stories

Author

Production staff

But what if . . . ?

Considerations

XML requirements

Identified in two ways - with an equal-contrib="yes" attribute and with a xref which points to a footnote in the author notes. This footnote can contain any necessary text, but is necessary as it allows numerous equal authorship statuses to be indicated.

<article-meta>
      …
      <contrib-group content-type="author">
            <contrib  contrib-type="author" equal-contrib="yes">
                  <name>
                        <surname>Gilbert</surname>
                        <given-names>James F</given-names>
                  </name>
                  <xref ref-type="fn" rid="equal-contrib1">†</xref>
            </contrib>
            <contrib  contrib-type="author" equal-contrib="yes">
                  <name>
                        <surname>Atherden</surname>
                        <given-names>Frederick P</given-names>
                  </name>
                  <xref ref-type="fn" rid="equal-contrib1">†</xref>
            </contrib>
            …
            <contrib  contrib-type="author" corresp="yes" equal-contrib="yes">
                  <name>
                        <surname>Harrison</surname>
                        <given-names>Melissa</given-names>
                  </name>
                  <xref ref-type="fn" rid="equal-contrib2">‡</xref>
            </contrib>
            <contrib  contrib-type="author" corresp="yes" equal-contrib="yes">
                 <name>
                        <surname>Aufreiter</surname>
                        <given-names>Michael</given-names>
                  </name>
                  <xref ref-type="fn" rid="equal-contrib2">‡</xref>
            </contrib>
      </contrib-group>
      …
      <author-notes>
            <fn fn-type="con" id="equal-contrib1">
                  <label>†</label>
                  <p>These authors contributed equally to this work</p>
            </fn>
            <fn fn-type="con" id="equal-contrib2">
                  <label>‡</label>
                  <p>These authors also contributed equally to this work</p>
            </fn>
      </author-notes>
      …
</article-meta>

Flexibility

We are open to changing this capture. Here are the PMC guidelines, which do not account for our use-case of more than 1 'group' of equal contributions:

Screenshot 2019-04-11 at 14 10 45

Taken from: https://github.com/elifesciences/TextureRequirements/issues/15

NickDuf commented 4 years ago