I see this in printed manuals all the time, right now I have at least one place where the table is broken down manually in 3 parts, but I'd like for it to do it automatically since adding or removing any text in the manual may change where that table is displayed, thus force me to re-do the break points.
Basically, the table would be this:
Code: Select all
<table>
<col/><col/>
<caption>Table X-X</caption>
<thead>
<tr><td>Name</td><td>Description</td></tr>
</thead>
<tbody>
<tr><td>Name X</td><td>Description X</td></tr>
<tr><td>Name X</td><td>Description X</td></tr>
<tr><td>Name X</td><td>Description X</td></tr>
<tr><td>Name X</td><td>Description X</td></tr>
</tbody>
</table>Code: Select all
<table>
<col/><col/>
<caption>Table X-X</caption>
<thead>
<tr><td>Name</td><td>Description</td></tr>
</thead>
<tbody>
<tr><td>Name X</td><td>Description X</td></tr>
<tr><td>Name X</td><td>Description X</td></tr>
</tbody>
</table>
<!-- page break caused by running out of space --->
<table>
<col/><col/>
<caption>Table X-X (continued)</caption>
<thead>
<tr><td>Name</td><td>Description</td></tr>
</thead>
<tbody>
<tr><td>Name X</td><td>Description X</td></tr>
<tr><td>Name X</td><td>Description X</td></tr>
</tbody>
</table>