[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: RE: [docbook-apps] Side-by-side images
This does get the desired result, though this is similar to my current solution. The content isn’t *really* a table, so <informaltable> doesn’t accurately describe what it is. Logically, I would think that <mediaobject> with 2 <imageobject>s would make the most sense, but when I transformed that into HTML, only the 1st image displayed. The description of <mediaobject> in TDG5 does state that it can contain “one or more…” for objects, but perhaps that means one or more different objects, not two objects that are the same. See http://docbook.org/tdg5/en/html/mediaobject.html -David From: Roland Burda [mailto:burda.roland@gmail.com] David! I use tables to get two images side-by-side. This is my workaround for the issue: <informaltable frame="none" rowsep="0" colsep="0"> <tgroup cols="2"> <tbody> <row> <entry> <para> <mediaobject> <imageobject> <imagedata fileref=""/> </imageobject> </mediaobject> </para> </entry> <entry> <para> <mediaobject> <imageobject> <imagedata fileref=""/> </imageobject> </mediaobject> </para> </entry> </row> </tbody> </tgroup> </informaltable> Cheers, Roland 2012/2/22 David Goss <dgoss@mueller-inc.com> Hello, |
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]