<index-see-also>
An <index-see-also>
element directs the reader to an index entry
that the reader should use in addition to the current one.
Usage information
There can be multiple <index-see-also>
elements within a single
<indexterm>
element.
Processing expectations
Processors SHOULD ignore an
<index-see-also>
element if its parent
<indexterm>
element contains any <indexterm>
children.
Attributes
The following attributes are available on this element: universal
attributes and @keyref
.
Examples
This section contains examples of how <index-see-also>
elements can
be used.
<index-see-also>
elementThe following code sample shows the use of an <index-see-also>
element to generate a "see also" reference to the index entry for "goldfish".
<indexterm>carp
<index-see-also>goldfish</index-see-also>
</indexterm>
This markup generates a primary index entry for "carp" and a redirection that instructs the reader to "see also goldfish".
<index-see-also>
element to redirect to a multilevel
index entryThe following code sample shows the use of an <index-see-also>
element to redirect to a multilevel <indexterm>
element:
<indexterm>feeding
<index-see-also>goldfish
<indexterm>feeding</indexterm>
</index-see-also>
</indexterm>