◇◆
<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
Two attributes are available to describe the figure when it contains a form:
- @is-form can indicate that the figure contains a form. What constitutes a “form” is not defined by NISO STS.
- @form-type can identify the type of the form. If the form is not one of the listed types, @custom-type may provide the type (see below).
Custom Form Type (@custom-type)
@form-type has as its values a fixed list of form types. If your form is not one of the listed
types, you can use @custom-type to describe the form type. Set the value of @form-type to “custom” and also use @custom-type to hold any form type you require. For example:
<fig is-form="form" form-type="custom" custom-type="template"...>...</fig>
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
- <legend> Legend, zero or more
- <kwd-group> Keyword Group, zero or more
- <subj-group> Subject Group, zero or more
- 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
- <table-wrap> Table Wrapper
- <p> Paragraph
- Standards Note and Example Elements
- Lists
- <alternatives> Alternatives For Processing
- <array> Array (Simple Tabular Array)
- <code> Code Block
- <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)?, (legend)*, (kwd-group)*, (subj-group)*, (alt-text | long-desc | email | ext-link | uri)*, (disp-formula | disp-formula-group | chem-struct-wrap | fn-group | fn | disp-quote | speech | statement | 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>
...