Gilberto C. Andrade wrote:
After some reading I've found that this tag <imagedata
fileref="images/click-logo.png" /> should be <imagedata
fileref="../../images/click-logo.png" />, to render images
correctly.(Off course, when viewing on xxeditor)
Nods, however DBF seems to look for images under 'images/'. If the
directory is moved it can't find the images.
A quickfix would be to either:
# Copy the images folder to the docbook folder for the editor to
pickup the images.
# Created a symbolic link from the docbook folder to the images folder
One more suggestion, take some oss projects and you will see a docbook
modular (http://www.sagehill.net/docbookxsl/ModularDoc.html) in
particularly all of them. Maybe a way to control the changes and not
everyone changing a big file.
Agreed modular sounds good. However DBF fails when generating the output.
However an alternative solution (which works in DBF) is to use entity
references.
click-book.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
<!ENTITY chapter-introduction SYSTEM "chapter-introduction.xml" >
<!ENTITY chapter-controls SYSTEM "chapter-controls.xml" >
]>
<book lang="en">
...
<toc></toc>
&chapter-introduction;
&chapter-controls;
</book>
Let me know what you think.
regards
bob