<back-matter>

Description

A back-matter metadata entry specifying back matter to be included in the book.

PDF

The referenced BDML document must contain a single chapter containing the back-matter content.

The order of back matter entries (including the optional automatically generated index) is determined by the order of the <back-matter> and <index-entry> metadata entries.

Attributes

Attribute name Description
url The url to the back matter document.
target Apply this metadata element only to the specified targets. See BDML schema for more information on metadata elements.
variant Apply this metadata element only when the variant is specified during translation. See BDML schema for more information on metadata elements.

Immediate descendants

No element descendants are defined for the <back-matter> element.

Immediate ancestors

Element name Relation
<metadata> The enclosing metadata element.

Example

Given the following BDML file:

<document xmlns="http://boradoc.org/1.0">
  <metadata>
    <back-matter url="appendix.bdml" />
  </metadata>
  <chapter>
    <para>Main body.</para>
  </chapter>
</document>

where appendix.bdml contains the following:

<document xmlns="http://boradoc.org/1.0">
  <chapter>
    <para>Thanks to ABC Corp</para>
  </chapter>
</document>

The first BDML file renders to the following:

Main body.

Thanks to ABC Corp