I'm trying to add an image to a document header, and was expecting to be able to do something along the lines of:
<articleinfo>
<mediaobject>
<imageobject>
<imagedata fileref="my_graphic.png" format="PNG"/>
</imageobject>
</mediaobject>
<title>An Exciting Document</title>
</articleinfo>
However, although this validates, it doesn't actually generate anything image-related in the resulting html. mediaobject is apparently a permissible child of articleinfo; is this just not supported using the standard DocBook XSL set ?
(I've tried using graphic, too, which also doesn't generate anything in the html.)
Thanks.