1 | <?xml version="1.0"?>
|
---|
2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
---|
3 |
|
---|
4 | <!-- General formatting settings. -->
|
---|
5 | <xsl:variable name="section.autolabel">1</xsl:variable>
|
---|
6 | <xsl:variable name="section.label.includes.component.label">1</xsl:variable>
|
---|
7 | <xsl:attribute-set name="monospace.properties">
|
---|
8 | <xsl:attribute name="font-size">90%</xsl:attribute>
|
---|
9 | </xsl:attribute-set>
|
---|
10 | <xsl:param name="draft.mode" select="'no'"/>
|
---|
11 |
|
---|
12 | <!-- Shift down section sizes one magstep. -->
|
---|
13 | <xsl:attribute-set name="section.title.level1.properties">
|
---|
14 | <xsl:attribute name="font-size">
|
---|
15 | <xsl:value-of select="$body.font.master * 1.728"></xsl:value-of>
|
---|
16 | <xsl:text>pt</xsl:text>
|
---|
17 | </xsl:attribute>
|
---|
18 | </xsl:attribute-set>
|
---|
19 | <xsl:attribute-set name="section.title.level2.properties">
|
---|
20 | <xsl:attribute name="font-size">
|
---|
21 | <xsl:value-of select="$body.font.master * 1.44"></xsl:value-of>
|
---|
22 | <xsl:text>pt</xsl:text>
|
---|
23 | </xsl:attribute>
|
---|
24 | </xsl:attribute-set>
|
---|
25 | <xsl:attribute-set name="section.title.level3.properties">
|
---|
26 | <xsl:attribute name="font-size">
|
---|
27 | <xsl:value-of select="$body.font.master * 1.2"></xsl:value-of>
|
---|
28 | <xsl:text>pt</xsl:text>
|
---|
29 | </xsl:attribute>
|
---|
30 | </xsl:attribute-set>
|
---|
31 | <xsl:attribute-set name="section.title.level4.properties">
|
---|
32 | <xsl:attribute name="font-size">
|
---|
33 | <xsl:value-of select="$body.font.master"></xsl:value-of>
|
---|
34 | <xsl:text>pt</xsl:text>
|
---|
35 | </xsl:attribute>
|
---|
36 | </xsl:attribute-set>
|
---|
37 | <xsl:attribute-set name="section.title.level5.properties">
|
---|
38 | <xsl:attribute name="font-size">
|
---|
39 | <xsl:value-of select="$body.font.master"></xsl:value-of>
|
---|
40 | <xsl:text>pt</xsl:text>
|
---|
41 | </xsl:attribute>
|
---|
42 | </xsl:attribute-set>
|
---|
43 | <xsl:attribute-set name="section.title.level6.properties">
|
---|
44 | <xsl:attribute name="font-size">
|
---|
45 | <xsl:value-of select="$body.font.master"></xsl:value-of>
|
---|
46 | <xsl:text>pt</xsl:text>
|
---|
47 | </xsl:attribute>
|
---|
48 | </xsl:attribute-set>
|
---|
49 |
|
---|
50 | <!-- Shift down chapter font size one magstep. -->
|
---|
51 | <xsl:attribute-set name="component.title.properties">
|
---|
52 | <xsl:attribute name="font-size">
|
---|
53 | <xsl:value-of select="$body.font.master * 2.0736"></xsl:value-of>
|
---|
54 | <xsl:text>pt</xsl:text>
|
---|
55 | </xsl:attribute>
|
---|
56 | </xsl:attribute-set>
|
---|
57 |
|
---|
58 | </xsl:stylesheet>
|
---|