footnoteref
footnoteref — A cross reference to a footnote (a footnote mark).
Synopsis
footnoteref ::=
- empty
Attributes
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
- label
Specifies an identifying string for presentation purposes
Parents
These elements contain footnoteref
: abbrev
, accel
, acronym
, address
, application
, arg
, artpagenums
, attribution
, authorinitials
, bibliocoverage
, biblioentry
, biblioid
, bibliomisc
, bibliomixed
, bibliomset
, bibliorelation
, biblioset
, bibliosource
, bridgehead
, caption
(db.html.caption), citation
, citebiblioid
, citetitle
, city
, classname
, classsynopsisinfo
, code
, command
, computeroutput
, confdates
, confnum
, confsponsor
, conftitle
, constant
, contractnum
, contractsponsor
, contrib
, country
, database
, description
, edition
, email
, emphasis
(db._emphasis), emphasis
(db.emphasis), entry
, envar
, errorcode
, errorname
, errortext
, errortype
, exceptionname
, fax
, filename
, firstname
, firstterm
(db._firstterm), firstterm
(db.firstterm), foreignphrase
(db._foreignphrase), foreignphrase
(db.foreignphrase), funcdef
, funcparams
, funcsynopsisinfo
, function
, givenname
, glosssee
, glossseealso
, glossterm
(db._glossterm), glossterm
(db.glossterm), guibutton
, guiicon
, guilabel
, guimenu
, guimenuitem
, guisubmenu
, hardware
, holder
, honorific
, initializer
, interfacename
, issuenum
, jobtitle
, keycap
, keycode
, keysym
, label
, lineage
, lineannotation
, link
, literal
, literallayout
, manvolnum
, markup
, mathphrase
, member
, methodname
, modifier
, mousebutton
, msgaud
, msglevel
, msgorig
, olink
, option
, optional
, orgdiv
, orgname
, otheraddr
, othername
, package
, pagenums
, para
, paramdef
, parameter
, personname
, phone
, phrase
(db._phrase), phrase
(db.phrase), pob
, postcode
, primary
, primaryie
, productname
, productnumber
, programlisting
, prompt
, property
, publishername
, quote
(db._quote), quote
(db.quote), refdescriptor
, refentrytitle
, refmiscinfo
, refname
, refpurpose
, releaseinfo
, remark
, replaceable
, returnvalue
, revnumber
, revremark
, screen
, secondary
, secondaryie
, see
, seealso
, seealsoie
, seeie
, seg
, segtitle
, seriesvolnums
, shortaffil
, simpara
, state
, street
, subscript
, subtitle
, superscript
, surname
, symbol
, synopsis
, systemitem
, tag
, td
, term
, termdef
, tertiary
, tertiaryie
, th
, title
, titleabbrev
, tocentry
, token
, trademark
, type
, uri
, userinput
, varname
, volumenum
, wordasword
, year
.
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>