microsimulation / ijm-xml

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

Tables captured in paragraphs - ijm-00097 and ijm-00160 #160

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

In articles ijm-00097 and ijm-00160, Tables (<table-wrap>) have been captured as children of paragraphs (<p>).

Instead these tables should be captured as children of the sections (<sec>) that they are in.

Example

<sec id="s8">
<title>Annex 1</title>
<p>
<table-wrap id="tableun1" position="float"><label>Table.</label>
<caption><title>Table Results from simulations and population estimates.</title></caption>
<table frame="hsides" rules="groups">
...
</table>
<table-wrap-foot>
...
</table-wrap-foot>
</table-wrap>
</p>
</sec>

Instead this should be:

<sec id="s8">
<title>Annex 1</title>
<table-wrap id="tableun1" position="float"><label>Table.</label>
<caption><title>Table Results from simulations and population estimates.</title></caption>
<table frame="hsides" rules="groups">
...
</table>
<table-wrap-foot>
...
</table-wrap-foot>
</table-wrap>
</sec>