删除 DocBook 中 'list of figures' 的引文

Removing citation from 'list of figures' in DocBook

我正在 DocBook 中写一些文档,文档中有一些图片,如下所示:

<figure id="obr3"><title>Logitná transformácia <xref linkend="id8"/></title>           
    <para>
        <mediaobject>
            <imageobject align = "center" >
                <imagedata fileref='obr3.png' format='PNG'/>
            </imageobject>
        </mediaobject>
    </para>                   
</figure>

这并没有什么奇怪的,但是正如你所看到的,在图像的标题中是 reference。我的问题是,在 参考文献列表中 不仅是当前图像的标题,而且还有整个引用,如下所示:

如您所见,语言是斯洛伐克语 (<book lang='sk'>)。我不想显示红色区域 - 只显示没有引用的图像标题。

如有任何帮助,请提前致谢。

为什么不使用引文而不是外部参照?

<figure id="obr3"><title>Logitná transformácia <citation>8</citation></title>
  <para>
    <mediaobject>
      <imageobject align = "center" >
        <imagedata fileref='obr3.png' format='PNG'/>
      </imageobject>
    </mediaobject>
  </para>             
</figure>

然后在参考书目中缩写

<bibliography>
  <title>Zoznam použitej literatúry</title>
    <bibliomixed>
      <abbrev>8</abbrev>
      <!--Citation details-->
    </bibliomixed>

http://www.docbook.org/tdg/en/html/xref.html

http://www.docbook.org/tdg/en/html/citation.html

http://www.docbook.org/tdg/en/html/abbrev.html