source: stylesheets/pdf/lfs-pagesetup.xsl@ 85c6cf4

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 85c6cf4 was 85c6cf4, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Removed the version number. It isn't needed now.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3536 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.4 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2
3<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:fo="http://www.w3.org/1999/XSL/Format"
5 version="1.0">
6
7 <!-- Force section1's onto a new page -->
8 <xsl:attribute-set name="section.level1.properties">
9 <xsl:attribute name="break-after">
10 <xsl:choose>
11 <xsl:when test="not(position()=last())">
12 <xsl:text>page</xsl:text>
13 </xsl:when>
14 <xsl:otherwise>
15 <xsl:text>auto</xsl:text>
16 </xsl:otherwise>
17 </xsl:choose>
18 </xsl:attribute>
19 </xsl:attribute-set>
20
21 <!-- Header -->
22 <xsl:attribute-set name="header.content.properties">
23 <xsl:attribute name="font-family">
24 <xsl:value-of select="$body.fontset"/>
25 </xsl:attribute>
26 <xsl:attribute name="text-align">right</xsl:attribute>
27 </xsl:attribute-set>
28
29 <xsl:template name="header.content">
30 <xsl:value-of select="/book/bookinfo/title"/>
31 <xsl:text> - </xsl:text>
32 <xsl:value-of select="/book/bookinfo/subtitle"/>
33 </xsl:template>
34
35 <xsl:template name="header.table">
36 <xsl:param name="gentext-key" select="''"/>
37 <xsl:choose>
38 <xsl:when test="$gentext-key = 'book'"/>
39 <xsl:otherwise>
40 <xsl:call-template name="header.content"/>
41 </xsl:otherwise>
42 </xsl:choose>
43 </xsl:template>
44
45 <!-- Centered titles for book and part -->
46 <xsl:template name="book.titlepage">
47 <fo:block space-before="2in">
48 <fo:block>
49 <xsl:call-template name="book.titlepage.before.recto"/>
50 <xsl:call-template name="book.titlepage.recto"/>
51 </fo:block>
52 <fo:block>
53 <xsl:call-template name="book.titlepage.before.verso"/>
54 <xsl:call-template name="book.titlepage.verso"/>
55 </fo:block>
56 <xsl:call-template name="book.titlepage.separator"/>
57 </fo:block>
58 </xsl:template>
59
60 <xsl:template name="part.titlepage">
61 <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">
62 <fo:block space-before="2.5in">
63 <xsl:call-template name="part.titlepage.before.recto"/>
64 <xsl:call-template name="part.titlepage.recto"/>
65 </fo:block>
66 <fo:block>
67 <xsl:call-template name="part.titlepage.before.verso"/>
68 <xsl:call-template name="part.titlepage.verso"/>
69 </fo:block>
70 <xsl:call-template name="part.titlepage.separator"/>
71 </fo:block>
72 </xsl:template>
73
74 <!-- Margins -->
75 <xsl:param name="page.margin.inner">0.75in</xsl:param>
76 <xsl:param name="page.margin.outer">0.75in</xsl:param>
77 <xsl:param name="title.margin.left">-1pc</xsl:param>
78 <xsl:attribute-set name="normal.para.spacing">
79 <xsl:attribute name="space-before.optimum">0.8em</xsl:attribute>
80 <xsl:attribute name="space-before.minimum">0.6em</xsl:attribute>
81 <xsl:attribute name="space-before.maximum">1em</xsl:attribute>
82 </xsl:attribute-set>
83 <xsl:attribute-set name="list.block.spacing">
84 <xsl:attribute name="space-before.optimum">0.8em</xsl:attribute>
85 <xsl:attribute name="space-before.minimum">0.6em</xsl:attribute>
86 <xsl:attribute name="space-before.maximum">1em</xsl:attribute>
87 <xsl:attribute name="space-after.optimum">0.8em</xsl:attribute>
88 <xsl:attribute name="space-after.minimum">0.6em</xsl:attribute>
89 <xsl:attribute name="space-after.maximum">1em</xsl:attribute>
90 </xsl:attribute-set>
91 <xsl:attribute-set name="list.item.spacing">
92 <xsl:attribute name="space-before.optimum">0.6em</xsl:attribute>
93 <xsl:attribute name="space-before.minimum">0.4em</xsl:attribute>
94 <xsl:attribute name="space-before.maximum">0.8em</xsl:attribute>
95 </xsl:attribute-set>
96 <xsl:attribute-set name="verbatim.properties">
97 <xsl:attribute name="space-before.minimum">0.6em</xsl:attribute>
98 <xsl:attribute name="space-before.optimum">0.8em</xsl:attribute>
99 <xsl:attribute name="space-before.maximum">1em</xsl:attribute>
100 <xsl:attribute name="space-after.minimum">0.6em</xsl:attribute>
101 <xsl:attribute name="space-after.optimum">0.8em</xsl:attribute>
102 <xsl:attribute name="space-after.maximum">1em</xsl:attribute>
103 </xsl:attribute-set>
104
105 <!-- Others-->
106 <xsl:param name="header.rule" select="0"></xsl:param>
107 <xsl:param name="footer.rule" select="0"></xsl:param>
108 <xsl:param name="marker.section.level" select="-1"></xsl:param>
109
110 <!-- Dropping a blank page -->
111 <xsl:template name="book.titlepage.separator"/>
112
113 <!-- How render a variablelist -->
114 <xsl:param name="variablelist.as.blocks" select="1"/>
115
116</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.