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

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

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


Subject: Re: [docbook-apps] newbie needs help with xi:include


 

This is the skeleton I use. First the master document:

<?xml version="1.0" encoding="UTF-8"?>

<?xml-model href="" schematypens="http://relaxng.org/ns/structure/1.0"?>
<article xmlns="http://docbook.org/ns/docbook"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" revision="$Id$">
<info>
<title>The master document</title>
<author>
<personname>Authors name</personname>
<email>some_mail@some_where.com</email>
</author>
</info>

<xi:include href="" parse="xml"/>
<xi:include href="" parse="xml"/>

</article>
 
 
And then for each part I use the following structure
 
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="" 
schematypens="http://relaxng.org/ns/structure/1.0"?>
<sect1 xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"
version="5.0" revision="$Id$">
<title>Introduction</title>
    <para /> 
</sect1>
 
 
/Johan

2011-12-17 10:40 skrev Jeroen Baten:

Hi, 

I want to migratie a couple of my books to docbook 5. I have exported them
to docbook using OpenOffice. But I get an error regarding the xi:include
element. Can someone tell me what I am doing wrong please?  
 


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