footnoteref

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

Synopsis

Content Model

footnoteref ::=

  • empty

Attributes

Common attributes.

Additional attributes:

  • label

Required attributes are show 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.

Neither SGML nor XML provide a mechnism (at this time) for asserting that some IDREF links must point to specific classes of elements. If a FootnoteRef points to something other than a Footnote, the parser will not report it as an error. It is an error nonetheless. Processing is undefined.

Attributes

Common attributes.

label

FIXME:

Examples

<article xmlns='http://docbook.org/ns/docbook'>
<title>Example footnoteref</title>

<informaltable>
<tgroup cols='2'>
<tbody>
<row>
<entry>foo<footnote xml:id='fnrex1a'><para>A meaningless
word</para></footnote></entry>
<entry>3<footnote xml:id='fnrex1b'><para>A meaningless
number</para></footnote></entry>
</row>
<row>
<entry>bar<footnoteref linkend='fnrex1a'/></entry>
<entry>5<footnoteref linkend='fnrex1b'/></entry>
</row>
</tbody>
</tgroup>
</informaltable>

</article>
foo[a]3[b]
bar[a]5[b]

[a] A meaningless word

[b] A meaningless number

ChangeLog

This alpha reference page is $Revision: 1.4 $ published $Date: 2005/10/31 12:31:54 $.