<fig>

Figure (図)

図として識別される絵または文字の資料ブロックで、通常 “Figure 3.” または “Figure” といったキャプションやラベルが付けられています。

備考

<fig> は、図がある場合は、「図一覧表」に現れる要素として定義されます。
関連する解説:<fig> の使用方法については、Figures and Graphics を参照してください。
使用法: <fig> の内容は性質が画像である必要はありません。; 図の内容は、画像、リスト、いくつかの段落、方程式、引用文、表など、またはこれらのいくつかの混合物であってもかまいません。
位置: @position 属性は、この要素をテキスト内の正確な位置に固定する必要があるかどうか、または、たとえば次のページの先頭、次の欄の最後、あるいは論理ファイルの最後、さらには別ウィンドウ中に浮動できるかどうかを示すために使用できます。
推奨用法: ラベルのない図形オブジェクトには <graphic> を用い、<fig> は使いません。あるオブジェクトが <fig><graphic> かどうかを判断する一般的なテストは、「図一覧表」中にこのオブジェクトが表示される必要があるかどうかです。

属性

コンテンツ・モデル

<!ELEMENT  fig          %fig-model;                                  >

拡張コンテンツ・モデル

((object-id)*, label?, (caption)?, (abstract)*, (kwd-group)*, (alt-text | long-desc | email | ext-link | uri)*, (disp-formula | disp-formula-group | chem-struct-wrap | disp-quote | speech | statement | verse-group | table-wrap | p | def-list | list | alternatives | array | code | graphic | media | preformat)*, (attrib | permissions)*)

記述方法

この要素は以下の要素内に含むことができます:

用例 1

単純な画像からなる、キャプションのない図:
... 
<fig id="f1" orientation="portrait" position="float">
<graphic xlink:href="f1"/>
<attrib>Brookhaven National Laboratory</attrib>
</fig>
...

用例 2

画像からなる図で、ラベルとキャプションがある:
... 
<fig id="f8" orientation="portrait" position="float">
<label>FIG. 8.</label>
<caption>
<p>Time difference between events F and A as a function of the 
length of entering plug for bifurcations B to BXXX, where X stands 
for 0 or 1.</p>
</caption>
<graphic orientation="portrait" position="float" xlink:href="f8"/>
</fig>
...

用例 3

画像からなる、より複雑な図:
...
<sec sec-type="results">
<title>Results</title>
<p>We identified 703 abstracts, of which 687 were not
relevant ... Details of randomisation procedures,
treatment schedules, and numbers of patients followed up
are given on the <italic>BMJ</italic> website.</p>
<fig id="F1">
<caption>
<title>Deaths among patients receiving day hospital care
or alternative services.</title>
<p>Odds ratios of death by end of follow up were calculated by 
fixed effects model. Heterogeneity between trials is presented as
&#x03C7;<sup>2</sup></p>
</caption>
<alt-text>Deaths in hospitals or with alternative services</alt-text>
<graphic xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="fors2662.f1">
<object-id>456472</object-id>
</graphic>
</fig>
...</sec>
...

用例 4

複数の画像からなる複雑な図:
...
<fig id="f1" orientation="portrait" position="float">
<label>FIG. 1.</label>
<caption>
<p>(a) Schematic of the working principles of HFM, (b) a typical application
scheme for an electric bias in HFM, (c) regulation the conformations and
dynamics (trapping, concentration, and sudden stretching) of λ-DNA molecules
in HFM, and (d) schematic of the trapping location regulation (enhanced online).
[URL: <ext-link ext-link-type="uri" xlink:href="http://dx.doi.org/10.1063/1.4762852.1">
http://dx.doi.org/10.1063/1.4762852.1</ext-link>]
<alternatives>
<media id="v1" mime-subtype="avi" mimetype="video" orientation="portrait"
position="anchor" specific-use="original-format" xlink:href="v1">
<object-id pub-id-type="doi" specific-use="metadata">10.1063/1.4762852.1</object-id>
</media>
<media mime-subtype="mpeg" mimetype="video" orientation="portrait"
position="anchor" specific-use="archival-format" xlink:href="v1"></media>
<media mime-subtype="x-flv" mimetype="video" orientation="portrait"
position="anchor" specific-use="online-format" xlink:href="v1"></media>
</alternatives>
</p>
</caption>
<graphic orientation="portrait" position="float" xlink:href="f1"/>
<graphic id="f1a" orientation="portrait" position="float" xlink:href="dummy1.png"/>
<graphic id="f1b" orientation="portrait" position="float" xlink:href="dummy2.png"/>
<graphic id="f1c" orientation="portrait" position="float" xlink:href="dummy3.png"/>
<graphic id="f1d" orientation="portrait" position="float" xlink:href="dummy4.png"/>
</fig>
...

用例 5

代替画像を持つ図:
... 
<fig id="f3" position="float">
<label>FIG. 3.</label>
<caption>...</caption>
<alternatives>
<graphic specific-use="print" xlink:href="1.4821168.figures.highres.f3.zip"></graphic>
<graphic specific-use="online" xlink:href="1.4821168.figures.online.f3.jpg"></graphic>
</alternatives>
</fig>
...