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

A single <indexterm> element can contain mulitple <index-see-also> elements.

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

(Text | <data> | <foreign> | <keyword> | <term> | <text> | <ph> | <indexterm>)*

Contained by

<indexterm>

Contained by

- topic/index-see-also

The <index-see-also> element is a base element type. It is defined in the topic module.

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.

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.

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

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