microsimulation / ijm-xml

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

elements in <kwd> #176

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

The following IJM articles have child elements of <kwd> which are not necessary:

Please ensure that the child elements are stripped (but that the content remains).

Examples

ijm-00102

<kwd-group kwd-group-type="author-keywords">
    <kwd><bold>C630</bold></kwd>
    <kwd><bold>C690</bold></kwd>
    <kwd><bold>C880</bold></kwd>
</kwd-group>

These are JEL classification keywords as well and so should be changed to:

<kwd-group kwd-group-type="jel-classification">
    <title>JEL classification</title>
    <kwd>C630</kwd>
    <kwd>C690</kwd>
    <kwd>C880</kwd>
</kwd-group>

ijm-00149

<kwd-group kwd-group-type="jel-classification">
    <kwd>H<sub>220</sub></kwd>
    <kwd>C<sub>150</sub></kwd>
    <kwd>D<sub>120</sub></kwd>
</kwd-group>

Should be changed to:

<kwd-group kwd-group-type="jel-classification">
    <kwd>H220</kwd>
    <kwd>C150</kwd>
    <kwd>D120</kwd>
</kwd-group>