目次

概要

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>

結果

テスト用の画像
テスト用の画像

←通し番号も付きます
←通し番号も付きます

表も書けます
i ii
A 10 15
B 25 50
←表も同様に通し番号が付きます

更新履歴

ブログ