microsimulation / ijm-xml

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

Table 4 in ijm-00044-vor-r3 #149

Closed fred-atherden closed 5 years ago

fred-atherden commented 5 years ago

Table 4 in ijm-00044-vor-r3 uses graphic, but this is placed inside a td element which means it will be treated as inline. Instead it should be placed as a direct child of table-wrap, i.e. current capture:

<table-wrap id="table4" position="float">
<label>Table 4.</label>
<caption>
            <title>Common structure of the iterative model.</title>
          </caption>
<table frame="hsides" rules="groups">
<tbody>
<tr>
<td>
                  <graphic xlink:href="ijm-00044-tbl4.tif" mimetype="image" mime-subtype="tiff"/>
                </td>
</tr>
</tbody>
</table>
</table-wrap>

Should become:

<table-wrap id="table4" position="float">
<label>Table 4.</label>
<caption>
<title>Common structure of the iterative model.</title>
</caption>
<graphic xlink:href="ijm-00044-tbl4.tif" mimetype="image" mime-subtype="tiff"/>
</table-wrap>
Vijayarajmurugesan commented 5 years ago

@FAtherden-eLife This is one fixed. I have uploaded the updated package to the below link:

https://exeterpremedia.exavault.com/share/view/1p0o7-84cs4vbg

Regards, Vijay

fred-atherden commented 5 years ago

Thanks