<index-see-also>
An <index-see-also> element directs the
    reader to an index entry that the reader  can use in addition to the current one.
Usage information
A single <indexterm>
        element can contain mulitple
          <index-see-also> elements.
Processing expectations
Processors SHOULD ignore an
          <index-see-also> element if its parent
          <indexterm> element contains any <indexterm>
        children.
Content model
(Text | <data> | <foreign> | <keyword> | <term> | <text> | <ph> | <indexterm>)*
Contained by
Contained by
Inheritance
- topic/index-see-also
The <index-see-also> element is a base element type. It is defined in the topic module.
Attributes
The following attributes are available on this element: universal
                                                  attributes and @keyref.
The following attributes are available on this element: universal attributes and the attributes defined below.
@keyref- Specifies a key name that acts as a redirectable reference based on a key definition within a map. See The keyref attribute for information on using this attribute.
 
Examples
This section is non-normative.
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>