bibliography
bibliography — A bibliography.
Synopsis
- Sequence of:
- One of:
- Zero or more of:
annotation
bridgehead
remark
revhistory
- Indexing inlines
- Admonition elements
- Formal elements
- Graphic elements
- Informal elements
informalequation
informalexample
informalfigure
informaltable
(db.cals.informaltable)informaltable
(db.html.informaltable)
- List elements
- Paragraph elements
- Publishing elements
- Synopsis elements
- Technical elements
- Verbatim elements
- One of:
- One or more of:
- One or more of:
- One of:
Additional Constraints
- The root element must have a version attribute.
Description
A bibliography. A DocBook bibliography may contain some
introductory information, but its main content is a set of bibliography
entries (either biblioentry
or
bibliomixed
). These may occur directly inside the
bibliography
element or inside
bibliodiv
elements.
Processing expectations
Formatted as a displayed block. A
bibliography
in a book
frequently causes a forced page break in print media.
Some systems may display only those entries within a
bibliography
that are cited in the containing
document. This may be an interchange issue. See Appendix D, Interchanging DocBook Documents.
The two styles of bibliography entry have quite different
processing expectations. A biblioentry
is
“raw”; it contains a database-like collection of named
fields. A bibliomixed
entry is
“cooked”; the fields occur in the order in which they
will be presented and additional punctuation may be sprinkled between
the fields.
See biblioentry
and
bibliomixed
for further discussion.
Attributes
Common attributes and common linking attributes.
- label
Specifies an identifying string for presentation purposes
- status
Identifies the editorial or publication status of the element on which it occurs
Examples
The entries in a bibliography
come in two general
forms, “raw” and “cooked”. A raw entry is a database-like collection
of named fields:
1 <bibliography xmlns='http://docbook.org/ns/docbook'> 2 <title>A Test Bibliography</title> 4 <bibliodiv><title>Books</title> 6 <biblioentry> <abbrev>AhoSethiUllman96</abbrev> 8 <authorgroup> <author><personname> 10 <firstname>Alfred V.</firstname><surname>Aho</surname> </personname></author> 12 <author><personname> <firstname>Ravi</firstname><surname>Sethi</surname> 14 </personname></author> <author><personname> 16 <firstname>Jeffrey D.</firstname><surname>Ullman</surname> </personname></author> 18 </authorgroup> <copyright><year>1996</year> 20 <holder>Bell Telephone Laboratories, Inc.</holder></copyright> <editor><personname> 22 <firstname>James T.</firstname><surname>DeWolf</surname> </personname></editor> 24 <biblioid class="isbn">0-201-10088-6</biblioid> <publisher> 26 <publishername>Addison-Wesley Publishing Company</publishername> </publisher> 28 <title>Compilers, Principles, Techniques, and Tools</title> </biblioentry> 30 <biblioentry xreflabel="Kites75"> 32 <authorgroup> <author><personname> 34 <firstname>Andrea</firstname><surname>Bahadur</surname> </personname></author> 36 <author><personname> <firstname>Mark</firstname><surname>Shwarek</surname> 38 </personname></author> </authorgroup> 40 <copyright><year>1974</year><year>1975</year> <holder>Product Development International Holding N. V.</holder> 42 </copyright> <biblioid class="isbn">0-88459-021-6</biblioid> 44 <publisher> <publishername>Plenary Publications International, Inc.</publishername> 46 </publisher> <title>Kites</title> 48 <subtitle>Ancient Craft to Modern Sport</subtitle> <pagenums>988-999</pagenums> 50 </biblioentry> 52 </bibliodiv> <bibliodiv><title>Periodicals</title> 54 <biblioentry> 56 <abbrev>Walsh97</abbrev> <biblioset relation='journal'> 58 <title>XML: Principles, Tools, and Techniques</title> <publisher> 60 <publishername>O'Reilly & Associates, Inc.</publishername> </publisher> 62 <biblioid class='issn'>1085-2301</biblioid> <editor><personname> 64 <firstname>Dan</firstname><surname>Connolly</surname> </personname></editor> 66 </biblioset> <biblioset relation='article'> 68 <title>A Guide to XML</title> <author><personname> 70 <surname>Walsh</surname><firstname>Norman</firstname> </personname></author> 72 <copyright><year>1997</year><holder>ArborText, Inc.</holder></copyright> <pagenums>97-108</pagenums> 74 </biblioset> </biblioentry> 76 </bibliodiv> 78 </bibliography>
A cooked entry is formatted, including additional text, so that it is easy to render.
1 <bibliography xmlns='http://docbook.org/ns/docbook'> 2 <title>References</title> 4 <bibliomixed> <bibliomset relation='article'>Walsh, Norman. 6 <title role='article'>Introduction to Cascading Style Sheets</title>. </bibliomset> 8 <bibliomset relation='journal'> <title>The World Wide Web Journal</title> 10 <volumenum>2</volumenum><issuenum>1</issuenum>. <publishername>O'Reilly & Associates, Inc.</publishername> and 12 The World Wide Web Consortium. Winter, 1996</bibliomset>. </bibliomixed> 14 </bibliography>