Tables
Capture tables inside a <table>
element child of a
<table-wrap>
element.
<table-wrap>
elements must not be captured as a child of
<p>
they must instead be a direct child of the parent
structure (usually a <sec>
or <body>
element).
Each
<table-wrap>
must have the following attributes:Attribute Name | Attribute Value |
---|---|
id | [FigID] |
position | float |
Each <table-wrap>
element may optionally have a
<label>
and a <caption>
child
elements.
When capturing the table itself use <th>
within
<thead>
and <td>
within
<tbody>
.
Example
<table-wrap id="jpenergyacc892t1" position="float"> <label>Table 1.</label> <caption id="jpenergyacc892tc1"> <p> <italic>I</italic> – <italic>V</italic> data for all samples, both for the tracked <italic>I</italic> – <italic>V</italic> parameters and for the fast <italic>I</italic> – <italic>V</italic> sweeps. </p> </caption> <table> <thead> <tr> <th align="left" valign="bottom"/> <th align="center" colspan="5" valign="bottom"> Recorded ( <italic>I</italic> – <italic>V</italic> parameter tracking) </th> <th align="center" colspan="3" valign="bottom">Fast</th> </tr> <tr> <th align="left" rowspan="2" valign="top">Sample</th> <th align="center" colspan="3" valign="top"> <italic>P</italic> <sub>max</sub> (mW) </th> <th align="center" rowspan="2" valign="top"> <italic>I</italic> <sub>SC</sub> (mA) </th> <th align="center" rowspan="2" valign="top"> <italic>V</italic> <sub>OC</sub> (V) </th> <th align="center" rowspan="2" valign="top"> <italic>P</italic> <sub>max</sub> (mW) </th> <th align="center" rowspan="2" valign="top"> <italic>I</italic> <sub>SC</sub> (mA) </th> <th align="center" rowspan="2" valign="top"> <italic>V</italic> <sub>OC</sub> (V) </th> </tr> <tr> <th align="center" valign="top">1</th> <th align="center" valign="top">2</th> <th align="center" valign="top">3</th> </tr> </thead> <tbody> <tr> <td align="left" valign="top">PSC1</td> <td align="center" valign="top">6.84</td> <td align="center" valign="top">6.85</td> <td align="center" valign="top">6.92</td> <td align="center" valign="top">15.7</td> <td align="center" valign="top">0.901</td> <td align="center" valign="top">8.92</td> <td align="center" valign="top">19.3</td> <td align="center" valign="top">0.914</td> </tr> <tr> <td align="left" valign="top">PSC2</td> <td align="center" valign="top">5.71</td> <td align="center" valign="top">5.72</td> <td align="center" valign="top">3.41</td> <td align="center" valign="top">12.8</td> <td align="center" valign="top">0.926</td> <td align="center" valign="top">8.8</td> <td align="center" valign="top">15.7</td> <td align="center" valign="top">0.965</td> </tr> <tr> <td align="left" valign="top">PSC3</td> <td align="center" valign="top">6.64</td> <td align="center" valign="top">6.74</td> <td align="center" valign="top">6.76</td> <td align="center" valign="top">11.9</td> <td align="center" valign="top">1.038</td> <td align="center" valign="top">6.77</td> <td align="center" valign="top">12.5</td> <td align="center" valign="top">1.052</td> </tr> </tbody> </table> </table-wrap>