[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Pesky <reference> title labels
In a DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN", I have this:
<book>
<title>Linux manual pages</title>
<reference>
<title>Section 2</title>
<partintro>
<title>Introduction to System Calls</title>
<sect1>
<title>DESCRIPTION</title>
<para>
This chapter describes the Linux system calls.
[ … rest of intro(2) contents … ]
</sect1>
</partintro>
<refentry>
[ _exit(2) - the first man page ]
</refentry>
[ all the other refentry-s, in section 2]
</reference>
<reference>
<title>Section 3</title>
[ section 3, structured the same way: a <partintro>, then <refentry>s ]
</reference>
[ the other sections formatted the same way. ]
</book>
So that's it. When I crunch this with
docbook2html/openjade/dsssl-stylesheets-1.79, the table of contents on the
first page reads:
Linux manual pages
Table of Contents
I. Section 2
_exit -- terminate the current process
accept -- accept a connection on a socket
[ the remaining <refentry>s in section 2 ]
II. Section 3
[ section 3 man pages ]
III. Section 4
[ section 4 man pages ]
IV. Section 5
[ section 5 man pages ]
V. Section 7
[ section 7 man pages ]
My question is how to I get rid of the ugly labels that are prepended to
each section page????? I have chapter-autolabel and section-autolabel
switched off, but they are still present.
Here's my entire stylesheet:
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!ENTITY dbstyle SYSTEM
"/usr/share/sgml/docbook/utils-0.6.14/docbook-utils.dsl" CDATA DSSSL>
]>
<style-sheet>
<style-specification use="docbook">
<style-specification-body>
(define %chapter-autolabel% #f)
(define %section-autolabel% #f)
(define %use-id-as-filename% #t)
(define %css-decoration% #t)
</style-specification-body>
</style-specification>
<external-specification id="docbook" document="dbstyle" specid="html">
</style-sheet>
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]