libero / editor

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

Author footnotes #30

Open fred-atherden opened 5 years ago

fred-atherden commented 5 years ago

Additional custom footnotes occasionally required to denote special statuses on the author list (e.g. ‘Authors listed in alphabetical order’).

User Stories

Author

Production staff

But what if . . . ?

Considerations

XML requirements

Miscellaneous footnotes contained in <author-notes> which are a child of <article-meta>. The content is captured in a <fn fn-type=”other”> element:

<article-meta>
    ...
    <contrib-group content-type="author">
        <contrib  contrib-type="author">
            <name>
                <surname>Atherden</surname>
                <given-names>Frederick P</given-names>
            </name>
            <xref ref-type="fn" rid="fn1">§</xref>
        </contrib>
        ...
    </contrib-group>
    …
    <author-notes>
        <fn fn-type="other" id="fn1">
            <label>§</label>
            <p>Author order was determined both alphabetically and in order of increasing seniority.</p>
        </fn>
    </author-notes>
    …
</article-meta>

PMC guidance: Screenshot 2019-04-11 at 14 56 05

Example from the JATS documentation: Screenshot 2019-04-11 at 14 57 02

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

NickDuf commented 5 years ago