<ref-book> (Reference to Book) Description .email comment.
Changed in version 1.6.
Description
This element holds a references to a book (or part of a book), including its title, the range of books it is a part of, and possibly the chapter title, first and last page numbers of the relevant material. It may also include additional information and a link to the book concerned
Although most of the child elements are required, they can be left empty as in the following example:
<ref-book id="CIT0002">
  <authorfield>
    <author-ref>
      <surname>Howie</surname>
      <givenname>J. M.</givenname>
    </author-ref>
  </authorfield>
  <booktitle>An Introduction to Semigroup Theory</booktitle>
  <editorfield>
    <editor-ref><surname/><givenname/></editor-ref>
  </editorfield>
  <seriesinfo/>
  <publicationfield>
    <pubname>Academic Press London</pubname>
    <pubplace>
      <city>London</city>
      <state/>
    </pubplace>
    <year>1976</year>
    <volumenum/>
  </publicationfield>
  <pagefield><firstpage/></pagefield>
</ref-book>
Note that this element can be replaced by the <ref-book-text> element if it is necessary to retain the original layout and punctuation of the reference.
Parent Elements
The elements listed below may directly contain this element. They are "parent" elements. Elements in referenced groups are included, up to two levels of group nesting.
Model Diagram
The DTD model for this element:
--+(choice)
  |  
  |-- ref-book-text  -- (TEXT and elements)
  |  
  |--+(sequence)
  |  |  
  | authorfield (optional) -- (elements)
  |  |  
  | chaptitle (optional) -- (TEXT and elements)
  |  |  
  | booktitle  -- (TEXT and elements)
  |  |  
  | editorfield (optional) -- (elements)
  |  |  
  | seriesinfo (optional) -- (TEXT and elements)
  |  |  
  | publicationfield  -- (elements)
  |  |  
  | pagefield (repeatable) -- (elements)
  |  |  
  | doi (optional) -- TEXT
  |  |  
  | addinfo (optional) -- (TEXT and elements)
  |  |  
  | linkset (optional) -- (elements)
DTD Definition
The DTD contains the following element and attribute definitions (note that embedded links are to definitions within the DTD page of this guide):
<!ELEMENT ref-book                       (ref-book-text | 
                                              (authorfield?, chaptitle?, booktitle, editorfield?, 
                                              seriesinfo?, publicationfield, pagefield+, doi?, addinfo?, linkset?))>
<!ATTLIST ref-book
                sequence                 CDATA  #IMPLIED 
               %a-group-CommonRequiredIDAttrs;>
.
Defined in DTD section Back Matter : References : Book References
General Attributes (shared with other elements)
Common Required ID Attributes (a-group-CommonRequiredIDAttrs)
Local Attributes (defined for this element alone)
Attribute: sequence
Description
This attribute holds a number that represents the sequential location of the reference within the group of references at the end of an article. If this attribute is used on one reference it should also be used in all of the other references in the group, and there must then be no gaps in the sequence or duplicate numbers. If this attribute is not used at all, then the order of the reference elements within the XML document should serve as an implied ordering (and might be explicitly numbered using this attribute at a later processing stage).
Specification
This attribute is not required. It has text content.
DTD Definition
                sequence                 CDATA  #IMPLIED 
.