生成附录要使用appendix环境。一个附录包含title,还包含内容。内容可以有很多,如:一般性文字,术语表,参考书目等。
术语表一般使用glossary环境,它需要单独的title。在附录中使用它并不需要定义它,只需直接使用glossentry元素即可。
参考书目一般使用bibliography环境,它需要单独的title。在附录中使用时不需要定义它,只需直接使用biblioentry元素即可。
例 2.24. 参考书目例子
<biblioentry><title>DocBook:The Definitive Guide</title>
<publisher> <publishername>O'Reilly & Associates, Inc.</publishername> </publisher>
<authorgroup> <author><othername>Norman Walsh</othername> </author> <author><othername>Leonard Muellner</othername> </author> </authorgroup> </biblioentry>
本例所举的环境中,还有许多元素,这里不过是简化了。
修订历史用来记录对信息修改的历史。它使用revhistory环境。
例 2.25. 修订历史例子
<revhistory><revision>
<revnumber>1.0</revnumber>
<date>2004-03-17</date>
<revdescription> <itemizedlist> <listitem><para>增加 <xref linkend="sect.2.10"/></para></listitem> <listitem><para>增加 <xref linkend="sect.2.11"/></para></listitem> </itemizedlist> </revdescription> </revision> </revhistory>