]> granicus.if.org Git - docbook-dsssl/commitdiff
Added new attribute set toc.line.properties for controlling appearance of lines in...
authorJirka Kosek <jirka@kosek.cz>
Thu, 4 May 2006 12:11:08 +0000 (12:11 +0000)
committerJirka Kosek <jirka@kosek.cz>
Thu, 4 May 2006 12:11:08 +0000 (12:11 +0000)
xsl/params/toc.line.properties.xml [new file with mode: 0644]

diff --git a/xsl/params/toc.line.properties.xml b/xsl/params/toc.line.properties.xml
new file mode 100644 (file)
index 0000000..2abb47a
--- /dev/null
@@ -0,0 +1,35 @@
+<refentry id="toc.line.properties">
+<refmeta>
+<refentrytitle>toc.line.properties</refentrytitle>
+<refmiscinfo role="type">attribute set</refmiscinfo>
+</refmeta>
+<refnamediv>
+<refname>toc.line.properties</refname>
+<refpurpose>Properties for lines in ToC and LoTs</refpurpose>
+</refnamediv>
+
+<refsynopsisdiv>
+<src:fragment id='toc.line.properties.frag'>
+<xsl:attribute-set name="toc.line.properties">
+  <xsl:attribute name="text-align-last">justify</xsl:attribute>
+  <xsl:attribute name="text-align">start</xsl:attribute>
+</xsl:attribute-set>
+</src:fragment>
+</refsynopsisdiv>
+
+<refsect1><title>Description</title>
+
+<para>Properties which are applied to every line in ToC (or LoT). You can
+modify them in order to change appearance of all, or some lines. For
+example in order to make lines for chapters in bold specify the
+following in your customization layer.</para>
+
+<programlisting><![CDATA[<xsl:attribute-set name="toc.line.properties">
+  <xsl:attribute name="font-weight">
+    <xsl:when test="self::chapter | self::preface | self::appendix">bold</xsl:when>
+    <xsl:otherwise>normal</xsl:otherwise>
+  </xsl:attribute>
+</xsl:attribute-set>]]></programlisting>
+
+</refsect1>
+</refentry>