1 <refentry xmlns="http://docbook.org/ns/docbook"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 xmlns:xi="http://www.w3.org/2001/XInclude"
4 xmlns:src="http://nwalsh.com/xmlns/litprog/fragment"
5 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6 version="5.0" xml:id="margin.note.properties">
8 <refentrytitle>margin.note.properties</refentrytitle>
9 <refmiscinfo class="other" otherclass="datatype">attribute set</refmiscinfo>
12 <refname>margin.note.properties</refname>
13 <refpurpose>Attribute set for margin.note properties</refpurpose>
17 <src:fragment xml:id="margin.note.properties.frag">
18 <xsl:attribute-set name="margin.note.properties">
19 <xsl:attribute name="font-size">90%</xsl:attribute>
20 <xsl:attribute name="text-align">start</xsl:attribute>
25 <refsection><info><title>Description</title></info>
27 <para>The styling for margin notes.
28 By default, margin notes are not implemented for any
29 element. A stylesheet customization is needed to make
30 use of this attribute-set.</para>
32 <para>You can use a template named <quote>floater</quote>
33 to create the customization.
34 That template can create side floats by specifying the
35 content and characteristics as template parameters.
38 <para>For example:</para>
39 <programlisting><xsl:template match="para[@role='marginnote']">
40 <xsl:call-template name="floater">
41 <xsl:with-param name="position">
42 <xsl:value-of select="$margin.note.float.type"/>
43 </xsl:with-param>
44 <xsl:with-param name="width">
45 <xsl:value-of select="$margin.note.width"/>
46 </xsl:with-param>
47 <xsl:with-param name="content">
48 <xsl:apply-imports/>
49 </xsl:with-param>
50 </xsl:call-template>
51 </xsl:template></programlisting>