footnoteref

footnoteref — A cross reference to a footnote (a footnote mark).

Synopsis

  • empty

Attributes

Common attributes.

Additional attributes:

  • label

Required attributes are shown in bold.

Additional Constraints

  • @linkend on footnoteref must point to a footnote.

Description

This element forms an IDREF link to a footnote. It generates the same mark or link as the footnote to which it points.

In technical documentation, footnoteref occurs most frequently in tables.

Processing expectations

The footnoteref element usually generates the same mark as the footnote to which it points, although its mark can be influenced by the label attribute.

Attributes

Common attributes.

label

Specifies an identifying string for presentation purposes

Parents [+]

This element occurs in 54 elements.

Examples

  1 <article xmlns='http://docbook.org/ns/docbook'>
  2 <title>Example footnoteref</title>
    
  4 <informaltable>
    <tgroup cols='2'>
  6 <tbody>
    <row>
  8 <entry>foo<footnote xml:id='fnrex1a'><para>A meaningless
    word</para></footnote></entry>
 10 <entry>3<footnote xml:id='fnrex1b'><para>A meaningless
    number</para></footnote></entry>
 12 </row>
    <row>
 14 <entry>bar<footnoteref linkend='fnrex1a'/></entry>
    <entry>5<footnoteref linkend='fnrex1b'/></entry>
 16 </row>
    </tbody>
 18 </tgroup>
    </informaltable>
 20 
    </article>
foo[a]3[b]
bar[a]5[b]

[a]A meaningless word

[b]A meaningless number

Last revised by Norman Walsh on 6 Jun 2011 (git hash: 6ffcc7640bbc5f852a318e452c9f210f03292cb9)