microsimulation / ijm-xml

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

References - collab, name and string-name outside of person-group #189

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

Please ensure that in every reference, the following elements are always included in an appropriate person-group element:

Thus far, there are 17 articles delivered with this: ijm-00008 ijm-00029 ijm-00044 ijm-00046 ijm-00049 ijm-00053 ijm-00054 ijm-00093 ijm-00108 ijm-00138 ijm-00139 ijm-00160 ijm-00181 ijm-00182 ijm-00183 ijm-00184 ijm-00188

Example

<ref id="bib6">
        <element-citation publication-type="book">
          <collab>Federale Overheidsdienst Economie, K.M.O., Middenstand en Energie – Algemene Directie Statistiek en Economische Informatie</collab>
          <year iso-8601-date="2006">2006</year>
          <source>EU-SILC 2004. Handleiding</source>
          <publisher-loc>Brussel</publisher-loc>
          <publisher-name>ADSEI</publisher-name>
        </element-citation>
      </ref>

This should instead be captured as follows:

<ref id="bib6">
        <element-citation publication-type="book">
        <person-group person-group-type="author">
          <collab>Federale Overheidsdienst Economie, K.M.O., Middenstand en Energie – Algemene Directie Statistiek en Economische Informatie</collab>
        </person-group>
          <year iso-8601-date="2006">2006</year>
          <source>EU-SILC 2004. Handleiding</source>
          <publisher-loc>Brussel</publisher-loc>
          <publisher-name>ADSEI</publisher-name>
        </element-citation>
      </ref>