← Prev in month
← Prev in thread
Next in thread →
Next in month →
<figure> and images
Hi everybody, i惴 kinda new to XML and already having my first problem. I惴 using simplified docbook for my XML Files and Apache Forrest 0.6 to build html-pages, etc. My problem is, that I惴 using several <figure>-Tags in my XML-Files and as long as they contain text everything works fine, but as soon as they contain images, the layout and format of the following tags isn愒 the way it should be (concerning alignment, font size, etc.). I placed my sample-code below. If I skip the <figure>-tag and just use the <mediaobject>-tag, the layout works fine, but I lose the title option for graphics. Is there any alternative? Thanks for your help! Christian Kaspari #################################################### <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE article PUBLIC "-//OASIS//DTD Simplified DocBook XML V1.0//EN" "http://www.oasis-open.org/docbook/xml/simple/1.0/sdocbook.dtd"> <article> <title>Article Test Document Title</title> <figure id="testId1"><title>Test Figure</title> <mediaobject> <imageobject> <imagedata fileref="images/image.png" format="PNG"/> </imageobject> </mediaobject> </figure> <para> This is a <quote>short quote</quote>. This is a <quote>Quotation with a <quote>nested quotation containing a <quote>nested quotation and another <quote>nested quotation</quote></quote></quote></quote>. </para> <figure id="testId2"><title>Test Figure</title> <programlisting>This is a ProgramListing </programlisting> </figure> </article> ####################################################
← Prev in month
← Prev in thread
Next in thread →
Next in month →