From mboxrd@z Thu Jan 1 00:00:00 1970 From: christophe.guillon@st.com (Christophe Guillon) To: andreas@mtg.co.at Cc: docbook-tools-discuss@sourceware.cygnus.com Subject: Re: Index creation Date: Tue, 02 Nov 1999 00:45:00 -0000 Message-id: <199911020844.JAA24738@eux100.sgp.st.com> References: X-SW-Source: 1999/msg00144.html Content-transfer-encoding: 7bit -------- You have to do it in a two-pass process (for more information get the docbook stylesheets documentation http://nwalsh.com/docbook/dsssl/db146d.zip ) : Run jade with the html-index variable set and the html stylesheet : jade -t sgml -d ...html/docbook.dsl -V html-index file.sgm generate the index pages with collateindex.pl (in the bin directory of the docbook stylesheets distribution) : perl collateindex.pl -o genindex.sgm Reprocess your document with jade jade -t sgml -d .../docbook.dsl file.sgm Your document must contain an external entity inclusion for the generated index : <...[ ]> ... &index; C.Guillon