<publisher>

Publisher

Container element for information about the person, company, or other entity that published a work.

Attributes

content-type Type of Content
id Document Internal Identifier
xml:base Base

Content Model

<!ELEMENT  publisher    %publisher-model;                            >

Expanded Content Model

((publisher-name, publisher-loc?)+)

Description

Any one of:

This element may be contained in:

<book-meta>, <book-part-meta>, <collection-meta>

Example 1

    
...
<book-meta>
<book-id>...</book-id>
<book-title-group>
<book-title>Sequence - Evolution - Function</book-title>
<subtitle>Computational Approaches in Comparative Genomics</subtitle>
</book-title-group>
...
<publisher>
<publisher-name>Kluwer Academic Publishers</publisher-name>
<publisher-loc>Norwell, MA</publisher-loc>
</publisher>
<permissions>
<copyright-statement>&copy; 2003 by Kluwer Academic Publishers.</copyright-statement>
<copyright-year>2003</copyright-year>
</permissions>
<abstract>...</abstract>
</book-meta>
...

   

Example 2

Book published by a Canadian publisher showing the Publisher name in two languages:

    
...
<book-meta>
<book-id>...</book-id>
<book-title-group>
<book-title>Why Say Why?</book-title>
</book-title-group>
<pub-date iso-8601-date="2009"><year>2009</year></pub-date>
<publisher>
<publisher-name xml:lang="fr">&Eacute;tudiant Presse</publisher-name>
<publisher-loc>Montr&eacute;al</publisher-loc>
<publisher-name xml:lang="en">Etudiant Press</publisher-name>
<publisher-loc>Vancouver</publisher-loc>
</publisher>
</book-meta>
...