This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Chunk question


Hi

I use xsl stylesheet 1.5 chunk.xsl with Saxon. The chunk.first.sections
param is 0. It's works fine, but if sections are childs of some chapter's
first section, Saxon doesn't chunk sections the first section.

I send example : test.xml
and the generated html files : html.zip (2.1 section's childs not chunked)

What's the problem?

2. question: Can I prohibit chunk some sections, for example the section is
too small (simplesect doesn't appear in Toc)

Very thanks

Szazo

Attachment: html.zip
Description: Zip compressed data

<?xml version="1.0" encoding="UTF-8"?>
<set>
	<book>
	<chapter>
		<title>1. chapter</title>
		<para>1. chapter</para>
		<section>
			<title>1.1 section</title>
			<para>1.1 section</para>		
		</section>
		<section>
			<title>1.2 section</title>
			<para>1.2 section</para>		
			<section>
				<title>1.2.1 section</title>
				<para>1.2.1 section</para>		
			</section>
			<section>
				<title>1.2.2 section</title>
				<para>1.2.2 section</para>		
			</section>
		</section>
	</chapter>
	<chapter>
		<title>2. chapter</title>
		<para>2. chapter</para>
		<section>
			<title>2.1 section</title>
			<para>2.1 section</para>
			<section>
				<title>2.1.1 section</title>
				<para>2.1.1 section</para>
			</section>
			<section>
				<title>2.1.2 section</title>
				<para>2.1.2 section</para>
			</section>
		</section>		
	</chapter>
  </book>
</set>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]