Up: Elements reference



<article> – an article (root element)

Attributes:

xml:lang
human language (default: "en")
id
unique name (identifier)
style/class
style properties and class (e.g. for CSS)

Possible Contents: title, author+, date?, keywords?, year?, abstract?, (block element | figure/table)*, section*, references?

Description: Embraces all elements of an article. Title and one author are mandatory. Here – in contrast to book – the <author> tag can contain <newline> and <footnote> elements for e.g. institute or email address.

As for the class attribute, see <book> above.

Example

     <?xml version="1.0" encoding="iso-8859-1"?>
     <!DOCTYPE book PUBLIC "-//Torsten Bronger//DTD tbook 1.5.2//EN"
                           "http://tbookdtd.sourceforge.net/tbook152.dtd">
     <article>
       <title>The Grand Unifying Theory</title>
       <author>Thomas Ferguson</author>
       <keywords>life, universe, everything</keywords>
     
       <abstract>
         <p>Six by nine equals forty-two.</p>
       </abstract>
     
       <section>
         <heading>Motivation</heading>
     
         <p>Motivation is simple ...</p>
       </section>
     </article>