microsimulation / ijm-xml

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

app-group use in ijm-00116 and ijm-00191 #158

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

Articles ijm-00116 and ijm-00191 have content which is a direct child of app-group, which is inappropriate.

ijm-00116

The appendix/tables in this article are not present in the PDF, so I'm not certain whether there should or shouldn't be a title for the appendix, but nevertheless this:

<app-group>
<table-wrap id="tableA1" position="float">
<label>Table A1.</label>
<caption>
<title>Equations for modifiable factors and outcomes in the MELC micro-simulation model.</title>
</caption>
<table frame="hsides" rules="groups">
...
</app-group>

should be changed to:

<app>
<table-wrap id="tableA1" position="float">
<label>Table A1.</label>
<caption>
<title>Equations for modifiable factors and outcomes in the MELC micro-simulation model.</title>
</caption>
<table frame="hsides" rules="groups">
...
</app>

with the possible inclusion of <title>Appendix</title> as the first child of <app>.

ijm-00191

Please rename app-group as app:

<app-group>
<title>Appendix</title>
<table-wrap id="tablea1" position="float">
<label>Table A.1.</label>
...
</app-group>

to:

<app>
<title>Appendix</title>
<table-wrap id="tablea1" position="float">
<label>Table A.1.</label>
...
</app>