<permissions>

Permissions

Container element for copyright and license information.

Remarks

The sub-elements of this elements are repeatable. If multiple values are applicable (such as multiple copyright years), they should be tagged separately rather than as multiple values within a single element.

Attributes

Content Model

<!ELEMENT  permissions  %permissions-model;                          >

Expanded Content Model

(copyright-statement*, copyright-year*, copyright-holder*, (ali:free_to_read | license)*)

Description

This element may be contained in:

Example 1

    ...
<book-meta>
<book-id>...</book-id>
<book-title-group>
<book-title><italic>C. ELEGANS</italic> II</book-title>
</book-title-group>...
<publisher>
<publisher-name>Cold Spring Harbor Laboratory Press</publisher-name>
<publisher-loc>Plainview, NY</publisher-loc>
</publisher>
<permissions>
<copyright-statement>&copy; 1997 Cold Spring Harbor Laboratory
Press</copyright-statement>
<copyright-year>1997</copyright-year>
<copyright-holder>Cold Spring Harbor Laboratory Press</copyright-holder>
</permissions>
<abstract>...</abstract>
</book-meta>
...   

Example 2

Including license information:
      ...
<book-meta>
<book-id>...</book-id>...
<pub-history>...</pub-history>
<permissions>
<copyright-statement>Copyright: &copy; 2004 Eichenberger
et al.</copyright-statement>
<copyright-year>2004</copyright-year>
<license license-type="open-access"
xlink:href="http://creativecommons.org/licenses/by/2.0/">
<license-p>This is an open-access article distributed under the 
terms of the Creative Commons Attribution License, which permits 
unrestricted use, distribution, and reproduction in any medium, 
provided the original work is properly cited.</license-p>
</license>
</permissions>
<abstract>...</abstract>
</book-meta>
...