◇◆
<fig> Figure
Block of graphic or textual material that is identified
as a figure, usually bearing a caption and a label such
as “Figure 3.” or “Figure”.
Usage/Remarks
A <fig> is defined as an element that
would appear in the Table of Figures, if there were one.
The content of a <fig> need not be graphic in nature; the content of a figure may be a graphic, a list,
several paragraphs, an equation, a display quote, a table, etc., or a mixture of several
of these.
The @position attribute may be used to indicate whether this element must be anchored at its exact
location within the text or whether it may float, for example, to the top of the next
page, into the next column, to the end of a logical file, or within a separate window.
Best Practice
When Content is a Form
The @is-form attribute can be used to indicate that the figure contains a form. What constitutes
a “form” is not defined by NISO STS.
Attributes
orientation (default = portrait)
position (default = float)
Models and Context
May be contained in
<ack>, <app>, <app-group>, <bio>, <body>, <boxed-text>, <disp-quote>, <fig-group>, <glossary>, <index>, <index-div>, <index-group>, <license-p>, <named-content>, <non-normative-example>, <non-normative-note>, <normative-example>, <normative-note>, <notes>, <p>, <ref-list>, <sec>, <styled-content>, <tbx:crossReference>, <tbx:definition>, <tbx:entailedTerm>, <tbx:example>, <tbx:externalCrossReference>, <tbx:note>, <tbx:pronunciation>, <tbx:see>, <tbx:source>, <tbx:term>, <tbx:usageNote>, <td>, <term-display>, <term-sec>, <th>
Description
The following, in order:
- <editing-instruction> Editing Instruction, zero or more
- <object-id> Object Identifier, zero or more
- <label> Label of a Figure, Reference, Etc., zero or one
- <caption> Caption of a Figure, Table, Etc., zero or one
- Any combination of:
- Accessibility Elements
- External Linking Elements
- Any combination of:
- <disp-formula> Formula, Display
- <disp-formula-group> Formula, Display Group
- <chem-struct-wrap> Chemical Structure Wrapper
- <fn-group> Footnote Group
- <fn> Footnote
- <disp-quote> Quote, Displayed
- <speech> Speech
- <statement> Statement, Formal
- <verse-group> Verse Form For Poetry
- <table-wrap> Table Wrapper
- <p> Paragraph
- Standards Note and Example Elements
- Lists
- <alternatives> Alternatives For Processing
- <array> Array (Simple Tabular Array)
- <code> Code Text
- <graphic> Graphic
- <media> Media Object
- <preformat> Preformatted Text
- Any combination of:
- Ownership Elements
Content Model
<!ELEMENT fig %fig-model; >
Expanded Content Model
((editing-instruction)*, (object-id)*, label?, (caption)?, (alt-text | long-desc | email | ext-link | uri)*, (disp-formula | disp-formula-group | chem-struct-wrap | fn-group | fn | disp-quote | speech | statement | verse-group | table-wrap | p | normative-note | non-normative-note | normative-example | non-normative-example | notes-group | def-list | list | alternatives | array | code | graphic | media | preformat)*, (attrib | permissions)*)
Tagged Samples
Typical figure
...
<sec id="s5_1">
<label>5.1</label>
<title>Two approaches to addressing accessibility in
standards</title>
...
<p><xref ref-type="fig" rid="f1">Figure 1</xref> provides
a graphical summary of how this Guide can be used.</p>
<fig id="f1" orientation="portrait" position="anchor">
<label>Figure 1</label>
<caption>
<title>Two approaches to address accessibility in
standards</title>
</caption>
<graphic xlink:href="g3658.jpg"/>
</fig>
...
</sec>
...
Figure whose caption includes table
...
<sec id="annB.1.1">
<label>B.1.1</label>
<title>Scanners with single axis reading diagram</title>
<p>This category comprises all scanners with
a single, fixed reading beam ...</p>
...
<fig id="fB.1">
<label>Figure B.1</label>
<caption>
<title>Reading diagram for single-axis scanner</title>
<p><table-wrap>
<table>
<thead>
<tr><th align="center" colspan="2">Scanner with single
axis reading diagram</th></tr>
<tr><th align="center">Parameter</th>
<th align="center">Term</th></tr>
</thead>
<tbody>
<tr><td align="center">A</td>
<td>minimum reading distance</td></tr>
<tr><td align="center">B</td>
<td>depth of field</td></tr>
<tr><td align="center">R</td>
<td>maximum reading distance</td></tr>
</tbody>
</table>
</table-wrap></p>
</caption>
<graphic position="anchor" xlink:href="f-b-1.png"/>
</fig>
</sec>
...