This is the mail archive of the docbook@lists.oasis-open.org mailing list for the DocBook project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [docbook] irregular ordered list syntax


Hi

On Thu 2004-05-27 Jens Porup wrote:
> Can anyone suggest the best way to structure the following sort of
> data:
> 
> 	Heading
> 		Subheading
> 			1: stuff 
> 			2: more stuff
> -->			5: jumped over some numbers there
> -->			9: and we're through

eg

<?xml version="1.0"?>
<!DOCTYPE chapter
  PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd";>
<chapter>
  <title>Chapter Heading</title>
  <section>
    <title>Heading</title>
    <orderedlist>
      <title>Subheading</title>
      <listitem>
        <simpara>stuff</simpara>
      </listitem>
      <listitem>
        <simpara>more stuff</simpara>
      </listitem>
    </orderedlist>
  </section>
</chapter>

Tobi

-- 
Vim users, don't forget to
   http://iccf-holland.org/donate.html

Attachment: pgp00000.pgp
Description: PGP signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]