figure.xsl
には、図表用の template が記述されています。
<figure> <image src="test.png" width="200" height="200" /> <legend>テスト用の画像</legend> </figure> <figure> <image src="test.png" width="100" height="100" /> <legend>←通し番号も付きます</legend> </figure> <table> <tr> <td></td> <th>i</th> <th>ii</th> </tr> <tr> <th>A</th> <td>10</td> <td>15</td> </tr> <tr> <th>B</th> <td>25</td> <td>50</td> </tr> <caption>表も書けます</caption> </table> <table> <thead> <tr> <td></td> <th>あ</th> <th>い</th> </tr> </thead> <tbody> <tr> <th>イ</th> <td>三</td> <td>五</td> </tr> <tr> <th>ロ</th> <td>八</td> <td>四</td> </tr> </tbody> <caption>←表も同様に通し番号が付きます</caption> </table>
表1: 表も書けます
| i | ii | |
|---|---|---|
| A | 10 | 15 |
| B | 25 | 50 |
表2: ←表も同様に通し番号が付きます
| あ | い | |
|---|---|---|
| イ | 三 | 五 |
| ロ | 八 | 四 |