Re: DOCBOOK-APPS: using XSL

From
Fric Qichardson
Date
2001-03-07T14:45:24+00:00
ID
Thread
Re: DOCBOOK-APPS: using XSL
Martin Bohatý wrote:
> 
> Hi,
> I am looking for help with DocBook XSL.
> 
> I have downloaded DocBook XML version 4.1.2. and XSL supplement.
> I have simple DocBook XML document which contains following:
> 
> <?xml version="1.0"?>
> <!DOCTYPE article
>         PUBLIC "-//Norman Walsh//DTD Simplified DocBk XML V3.1.7.1//EN"
>         "c:/dbnew/docbookx.dtd">

The doctype should look like this below. The one above is for the
simplified DocBook.
Hope this helps.
Eric :-)

<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"         
"http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd">

> <?xml-stylesheet type="text/xsl" href="c:/docbook/xhtml/docbook.xsl"?>
> <article>
> <title>TEST ARTICLE</title>
> <para>This is only test...</para>
> </article>