microsimulation / ijm-xml

XML files for the International Journal of Microsimulation
MIT License
0 stars 0 forks source link

role elements in ijm-00074 #174

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

In ijm-00074 both authors have child role elements.

<contrib contrib-type="author">
    <name>
        <surname>Figari</surname>
        <given-names>Francesco</given-names>
    </name>
    <role>Guest Editor</role>
    <xref ref-type="aff" rid="aff1">1</xref>
    <email>francesco.figari@uninsubria.it</email>
</contrib>
<contrib contrib-type="author">
    <name>
        <surname>Tasseva</surname>
        <given-names>Iva Valentinova</given-names>
    </name>
    <role>Guest Editor</role>
    <xref ref-type="aff" rid="aff2">2</xref>
    <email>itasseva@essex.ac.uk</email>
</contrib>

Instead, please capture this as one footnote in an author-notes element, and link to it from the authors using xref, i.e.

<contrib-group>
    <contrib contrib-type="author">
        <name>
            <surname>Figari</surname>
            <given-names>Francesco</given-names>
        </name>
        <xref ref-type="aff" rid="aff1">1</xref>
        <xref ref-type="fn" rid="fn1"/>
        <email>francesco.figari@uninsubria.it</email>
    </contrib>
    <contrib contrib-type="author">
        <name>
            <surname>Tasseva</surname>
            <given-names>Iva Valentinova</given-names>
        </name>
        <xref ref-type="aff" rid="aff2">2</xref>
        <xref ref-type="fn" rid="fn1"/>
        <email>itasseva@essex.ac.uk</email>
    </contrib>
    ...
</contrib-group>
<author-notes>
    <fn id="fn1">
        <p>Guest Editor</p>
    </fn>
</author-notes>