如何使用 xmlmind docbook 编辑器生成索引?

How to generate an index with xmlmind docbook editor?

我是 xml 的新手,但不是 latex。我开始使用 xmlmind。 我有一个简单的文档示例,其中我只有一个术语 test 索引。 生成的 pdf 或 html 不包含索引。我缺少什么?

<?xml version="1.0" encoding="UTF-8"?>
<book version="5.1" xmlns="http://docbook.org/ns/docbook"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xmlns:xila="http://www.w3.org/2001/XInclude/local-attributes"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  xmlns:trans="http://docbook.org/ns/transclusion"
  xmlns:svg="http://www.w3.org/2000/svg"
  xmlns:m="http://www.w3.org/1998/Math/MathML"
  xmlns:html="http://www.w3.org/1999/xhtml"
  xmlns:db="http://docbook.org/ns/docbook">
<info>
<title/>
<author>
  <personname><firstname/><surname/></personname>

  <affiliation>
    <orgname/>
  </affiliation>
</author>

<pubdate/>
</info>

<chapter>
<title/>
<section>
  <title/>
  <para>test<indexterm class="singular">
      <primary>test</primary>
    </indexterm></para>
</section>
</chapter>
</book>

只需添加一个

<index/>

之后
</chapter> 

任期。