<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.

There can be multiple <index-see-also> elements within a single <indexterm> element.

Processors SHOULD ignore an <index-see-also> element if its parent <indexterm> element contains any <indexterm> children.

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.

Figure 1. Use of an <index-see-also> element

The 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".

Figure 2. Use of an <index-see-also> element to redirect to a multilevel index entry

The 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>