◇◆
<alternatives> Alternatives For Processing
Container element used to hold a group of processing alternatives, for example, a
single
<graphic> that ships in several formats
(tif, gif, and jpeg) or in different resolutions. This element is a physical grouping to contain multiple
logically equivalent (substitutable) versions of the same information object. Typically
these are processing alternatives, and the reader is expected to see only one version
of the object.
Usage/Remarks
<alternatives> is neither inherently block nor inline in nature, because the block or inline quality
is determined by context and usage. A typical example for this element as a block
construct is a <graphic> that ships with a document in multiple versions, for example, as a .tif, a .jpeg, and an SVG file or as both a color graphic and a black-and-white. A typical example
of an inline alternatives is an <inline-formula> that is available in four forms: as a .tif image (<inline-graphic>), encoded in MathML (<mml:math>), encoded in TeX, and a version in plain ASCII.
Accessibility
This element, by providing a container for alternative versions of
a graphic or media object, enables providing a textual alternative to any graphic
or media object as well as providing an enlarged graphic version for accessibility.
Models and Context
May be contained in
<ack>, <addr-line>, <alt-title>, <app>, <app-group>, <array>, <article-title>, <attrib>, <award-id>, <bio>, <body>, <bold>, <boxed-text>, <chem-struct>, <chem-struct-wrap>, <collab>, <comment>, <compl>, <compound-kwd-part>, <compound-subject-part>, <def-head>, <disp-formula>, <disp-quote>, <element-citation>, <fig>, <fig-group>, <fixed-case>, <full>, <funding-source>, <glossary>, <index>, <index-div>, <index-group>, <inline-formula>, <intro>, <italic>, <label>, <license-p>, <main>, <meta-value>, <mixed-citation>, <monospace>, <named-content>, <non-normative-example>, <non-normative-note>, <normative-example>, <normative-note>, <notes>, <overline>, <p>, <ref-list>, <related-term>, <roman>, <sans-serif>, <sc>, <sec>, <see>, <see-also>, <see-also-entry>, <see-entry>, <sig-block>, <strike>, <styled-content>, <sub>, <subject>, <subtitle>, <sup>, <supplement>, <supplementary-material>, <table-wrap>, <tbx:crossReference>, <tbx:definition>, <tbx:entailedTerm>, <tbx:example>, <tbx:externalCrossReference>, <tbx:note>, <tbx:pronunciation>, <tbx:see>, <tbx:source>, <tbx:term>, <tbx:usageNote>, <td>, <term>, <term-display>, <term-head>, <term-sec>, <th>, <title>, <trans-subtitle>, <trans-title>, <underline>, <verse-line>
Description
One or more of any of:
- <array> Array (Simple Tabular Array)
- <chem-struct> Chemical Structure (Display)
- <code> Code Text
- <graphic> Graphic
- Inline Display Elements
- <inline-supplementary-material> Inline Supplementary Material
- <media> Media Object
- <preformat> Preformatted Text
- <supplementary-material> Supplementary Material
- <table> Table (NISO JATS table model)
- <oasis:table> OASIS XML Exchange (CALS) Table (In STS Extended ONLY)
- <textual-form> Textual Form
- Math Elements
Content Model
<!ELEMENT alternatives %alternatives-model; >
Expanded Content Model
(array | chem-struct | code | graphic | inline-graphic | inline-supplementary-material | media | preformat | private-char | supplementary-material | table | oasis:table | textual-form | tex-math | mml:math)+
Tagged Sample
Equation with 3 alternatives: graphic, accessible graphic, and MathML
...
<disp-formula id="num00001">
<alternatives>
<graphic xlink:href="http://www.astm.org/HTTP/IMAGES/G0094-05R14_1.gif"
specific-use="no MathML"/>
<graphic xlink:href="http://www.astm.org/HTTP/IMAGES/G0094-05R14_1-accessible.gif"
specific-use="accessible"/>
<mml:math display="block">
<mml:mrow>
<mml:mi mathvariant="normal">P</mml:mi>
<mml:mo>&</mml:mo>
<mml:mi mathvariant="normal">B</mml:mi>
<mml:mspace width="0.25em"/>
<mml:mtext>Ratio</mml:mtext>
<mml:mo>=</mml:mo>
<mml:mtext>Wd/awD</mml:mtext>
</mml:mrow>
</mml:math>
</alternatives>
</disp-formula>
...