++C++; // 未確認飛行 C

Google
Web ufcpp.net

図表

目次

キーワード

概要

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: テスト用の画像

図2: ←通し番号も付きます

表1: 表も書けます

iii
A1015
B2550

表2: ←表も同様に通し番号が付きます

Transtation into English

[お問い合わせ](q)