set
set — A collection of books.
Synopsis
set ::=
- Sequence of:
Attributes
Common attributes and common linking attributes.
Additional attributes:
- label
- status
Additional Constraints
- If this element is the root element, it must have a version attribute.
Description
A set
is a collection of
book
s. Placing multiple book
s in a
set
, as opposed to publishing each of them
separately, has the advantage that ID/IDREF links can then be used
across all books.
A set
is the top of the DocBook structural
hierarchy. Although set
s can contain other
set
s, nothing else can contain them.
Processing expectations
Formatted as a displayed block. A set
may
generate additional front and back matter (e.g., tables of contents
and setindex
s) around the book
s
it contains.
Attributes
Common attributes and common linking attributes.
- any attribute
Any attribute in any other explicit namespace
- label
Specifies an identifying string for presentation purposes
- status
Identifies the editorial or publication status of the element on which it occurs
Parents
Children
The following elements occur in set
: article
, book
, info
(db.titleforbidden.info), info
(db.titlereq.info), set
, setindex
, subtitle
, title
, titleabbrev
, toc
.
See Also
Related elements: appendix
, article
, book
, chapter
, colophon
, dedication
, part
, partintro
, preface
.
Examples
1 |<set xmlns='http://docbook.org/ns/docbook'>
|<title>The Perl Series</title>
|<info>
|<author>
5 |<orgname>O'Reilly Media</orgname>
|</author>
|</info>
||
<book><title>Learning Perl</title>
10 |<chapter><title>...</title><para>...</para></chapter>
|</book>
||
<book><title>Programming Perl</title>
|<chapter><title>...</title><para>...</para></chapter>
15 |</book>
||
<book><title>Advanced Perl Programming</title>
|<chapter><title>...</title><para>...</para></chapter>
|</book>
20 ||
</set>