    <?xml version="1.0"?>
    <article>
      <title>Writing DocBook articles</title>
      <artheader>
        <abstract>
          This article describes how you can use DocBook to develop
          PDF documents and will cover tools you need to edit DocBook
          articles and tools to translate them to PDF documents.
        </abstract>
        <author>
          <firstname>Egon</firstname>
          <surname>Willighagen</surname>
        </author>
        <date></date>
      </artheader>

      <section>
        <title>Introduction</title>

        <para>
          DocBook is an SGML application 
          developed to markup documents, just like HTML marks up webdocuments.
          This test article contains the examples from the LinuxFocus
          article "Making PDF documents with DocBook".
        </para>

      </section>

      <section>
        <title>Example</title>
        <para>Make sure to notice that this document makes recursive use
          of the section element.</para>
        <section>
          <title>Adding examples</title>
          <para>
<example>
         <title>Perl program that converts an XML document into a HTML page.</title>
         <programlisting>
           #!/usr/bin/perl -w
           use diagnostics;
           use strict;
           use XML::XSLT;

           my $XSLTparser = XML::XSLT->new();
           $XSLTparser->open_project ("file.xml", "stylesheet.xsl", 
                                      "FILE", "FILE");
           $XSLTparser->process_project;
           $XSLTparser->print_result();    
         </programlisting>
       </example>
          </para>
        </section>
        <section>
          <title>Adding lists</title>
          <para>
       <itemizedlist>
         <listitem><para>an item</para></listitem>
         <listitem><para>another item</para></listitem>
         <listitem><para>and again an item</para></listitem>
       </itemizedlist>
          </para>
        </section>        
      </section>

      <section>
        <title>Conclusion</title>
        <para>
          DocBook is a powerfull tool to develop books and articles.
          The PDF export function, moreover, works very well.
        </para>
      </section>

    </article>
