Package: dblatex Version: 0.3.10-2 Severity: normal
I believe dblatex should handle <figure> without <title> a bit better. At the moment it generated invalid latex and latex report the problem in a way that is very hard to understand. Here is an example docbook file demonstrating the problem: <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> <book> <bookinfo> <title>Example demonstrating dblatex failing on blank textobject</title> </bookinfo> <preface> <title>test</title> <!-- A missing figure.title causes dblatex to fail. The <figure> part is a fragment of docbook code generated by pandoc from rst. --> <figure> <mediaobject> <imageobject> <imagedata fileref="media/logo-noark5-kjerne.png" /> </imageobject> <textobject><phrase></phrase></textobject> </mediaobject> </figure> <para>text is good</para> </preface> </book> It could either insert \caption{} or something like that when there is no title, or perhaps \caption{Title missing} to make the problem more visible in the PDF. I solved it by adjusting my rst files to provide figure titles, but it took a while to figure out what was wrong... -- Happy hacking Petter Reinholdtsen

