OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: 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

PGP signature



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]