<graphic>
Graphic
Description of and pointer to an external file containing a still image.
Remarks
The external file associated with a <graphic> holds a picture, illustration, etc., and is usually some form of
binary object. The “content” of the <graphic> element (if any) is not the object itself, but
merely information about the object. The external file that contains the object is
named by the @xlink:href attribute.
Related Essay: For a discussion on the use of <graphic>, see Figures and Graphics.
Position: Although the @position attribute of this element may be used to indicate whether this element must be anchored at its exact
location within the text or it may float, it is good practice to anchor graphics. All the graphics inside figures, tables, etc., should be anchored as well, although the outer structure (figure, boxed text) may be allowed to float.
Usage: Display component elements, such as <caption>, should always be used at the highest possible level; in other words, if a <graphic> element is inside a <fig> element, the <caption>, <long-desc>, etc., should be part of the <fig>, not part of the <graphic> element. Use a <caption> element (and similar display component elements) on a <graphic> only when the graphic object is not enclosed in any other structure or when a figure contains multiple graphic objects, each of which must have its own <caption>. For similar reasons, the @position attribute should be set to “anchor” for a <graphic> element contained inside a larger display container such as a <fig>.
Attributes
Content Model
<!ELEMENT graphic %graphic-model; >
Expanded Content Model
((object-id)?, (alt-text | long-desc)*, (attrib?, permissions?)*)
Description
The following, in order:
- <object-id> Object Identifier, zero or one
- Any combination of:
- Accessibility Elements
- Zero or more occurrences of the following, in order:
- Ownership Elements
- <attrib> Attribution, zero or one
- <permissions> Permissions, zero or one
- Ownership Elements
This element may be contained in:
Example 1
Typical graphic inside a figure:
...
<fig id="f1" orientation="portrait" position="float">
<graphic xlink:href="f1"/>
<attrib>Brookhaven National Laboratory</attrib>
</fig>
...
...
<fig id="f8" orientation="portrait" position="float">
<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>
...
Example 2
Graphic with an <object-id> inside a complex figure with a title, caption, and alternative text:
...
<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
χ<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>
...
Example 3
Graphic not inside a paragraph, but loose in the body text:
...
<body>
<graphic specific-use="online" position="anchor"
xlink:href="prodbe.int.aip.org:8080/journal/journal_fs/
1.2983775.1373315697!/images/1460725790.jpg"/>
...</body>
...
Example 4
Graphics inside table cells:
... <table-wrap id="t14">... <table frame="box" rules="all" cellpadding="5"> ... <tr valign="bottom"> <td align="left" colspan="1" rowspan="1">3</td> <td align="char" char="." colspan="1" rowspan="1">14.4411</td> <td align="center" colspan="1" rowspan="1"> <graphic id="g14" orientation="portrait" position="anchor" xlink:href="d14"/></td> <td align="char" char="." colspan="1" rowspan="1">14.4411</td> <td align="center" colspan="1" rowspan="1"> <graphic id="g15" orientation="portrait" position="anchor" xlink:href="d15"/></td> <td align="char" char="." colspan="1" rowspan="1">14.4414</td> <td align="center" colspan="1" rowspan="1"> <graphic id="g16" orientation="portrait" position="anchor" xlink:href="d16"/></td> <td align="char" char="." colspan="1" rowspan="1">14.4414</td> <td align="center" colspan="1" rowspan="1"> <graphic id="g17" orientation="portrait" position="anchor" xlink:href="d17"/></td> </tr> </table> </table-wrap> ...