pandoc/test/tables.jats_publishing
2020-11-19 22:09:52 +01:00

226 lines
5.3 KiB
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>Simple table with caption:</p>
<table-wrap>
<caption>
<p>Demonstration of simple table syntax.</p>
</caption>
<table>
<thead>
<tr>
<th align="right">Right</th>
<th align="left">Left</th>
<th align="center">Center</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">12</td>
<td align="left">12</td>
<td align="center">12</td>
<td>12</td>
</tr>
<tr>
<td align="right">123</td>
<td align="left">123</td>
<td align="center">123</td>
<td>123</td>
</tr>
<tr>
<td align="right">1</td>
<td align="left">1</td>
<td align="center">1</td>
<td>1</td>
</tr>
</tbody>
</table>
</table-wrap>
<p>Simple table without caption:</p>
<table-wrap>
<table>
<thead>
<tr>
<th align="right">Right</th>
<th align="left">Left</th>
<th align="center">Center</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">12</td>
<td align="left">12</td>
<td align="center">12</td>
<td>12</td>
</tr>
<tr>
<td align="right">123</td>
<td align="left">123</td>
<td align="center">123</td>
<td>123</td>
</tr>
<tr>
<td align="right">1</td>
<td align="left">1</td>
<td align="center">1</td>
<td>1</td>
</tr>
</tbody>
</table>
</table-wrap>
<p>Simple table indented two spaces:</p>
<table-wrap>
<caption>
<p>Demonstration of simple table syntax.</p>
</caption>
<table>
<thead>
<tr>
<th align="right">Right</th>
<th align="left">Left</th>
<th align="center">Center</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">12</td>
<td align="left">12</td>
<td align="center">12</td>
<td>12</td>
</tr>
<tr>
<td align="right">123</td>
<td align="left">123</td>
<td align="center">123</td>
<td>123</td>
</tr>
<tr>
<td align="right">1</td>
<td align="left">1</td>
<td align="center">1</td>
<td>1</td>
</tr>
</tbody>
</table>
</table-wrap>
<p>Multiline table with caption:</p>
<table-wrap>
<caption>
<p>Heres the caption. It may span multiple lines.</p>
</caption>
<table>
<colgroup>
<col width="15%" />
<col width="14%" />
<col width="16%" />
<col width="35%" />
</colgroup>
<thead>
<tr>
<th align="center">Centered Header</th>
<th align="left">Left Aligned</th>
<th align="right">Right Aligned</th>
<th align="left">Default aligned</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">First</td>
<td align="left">row</td>
<td align="right">12.0</td>
<td align="left">Example of a row that spans multiple lines.</td>
</tr>
<tr>
<td align="center">Second</td>
<td align="left">row</td>
<td align="right">5.0</td>
<td align="left">Heres another one. Note the blank line between
rows.</td>
</tr>
</tbody>
</table>
</table-wrap>
<p>Multiline table without caption:</p>
<table-wrap>
<table>
<colgroup>
<col width="15%" />
<col width="14%" />
<col width="16%" />
<col width="35%" />
</colgroup>
<thead>
<tr>
<th align="center">Centered Header</th>
<th align="left">Left Aligned</th>
<th align="right">Right Aligned</th>
<th align="left">Default aligned</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">First</td>
<td align="left">row</td>
<td align="right">12.0</td>
<td align="left">Example of a row that spans multiple lines.</td>
</tr>
<tr>
<td align="center">Second</td>
<td align="left">row</td>
<td align="right">5.0</td>
<td align="left">Heres another one. Note the blank line between
rows.</td>
</tr>
</tbody>
</table>
</table-wrap>
<p>Table without column headers:</p>
<table-wrap>
<table>
<tbody>
<tr>
<td align="right">12</td>
<td align="left">12</td>
<td align="center">12</td>
<td align="right">12</td>
</tr>
<tr>
<td align="right">123</td>
<td align="left">123</td>
<td align="center">123</td>
<td align="right">123</td>
</tr>
<tr>
<td align="right">1</td>
<td align="left">1</td>
<td align="center">1</td>
<td align="right">1</td>
</tr>
</tbody>
</table>
</table-wrap>
<p>Multiline table without column headers:</p>
<table-wrap>
<table>
<colgroup>
<col width="15%" />
<col width="14%" />
<col width="16%" />
<col width="35%" />
</colgroup>
<tbody>
<tr>
<td align="center">First</td>
<td align="left">row</td>
<td align="right">12.0</td>
<td>Example of a row that spans multiple lines.</td>
</tr>
<tr>
<td align="center">Second</td>
<td align="left">row</td>
<td align="right">5.0</td>
<td>Heres another one. Note the blank line between rows.</td>
</tr>
</tbody>
</table>
</table-wrap>