aboutsummaryrefslogtreecommitdiffstats
path: root/stylesheets/lfs-print.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'stylesheets/lfs-print.xsl')
-rw-r--r--stylesheets/lfs-print.xsl34
1 files changed, 16 insertions, 18 deletions
diff --git a/stylesheets/lfs-print.xsl b/stylesheets/lfs-print.xsl
index d56a9bd3c..929c15ce5 100644
--- a/stylesheets/lfs-print.xsl
+++ b/stylesheets/lfs-print.xsl
@@ -3,32 +3,31 @@
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
version="1.0">
-
- <!-- We use FO and FOP as the processor -->
+ <!-- We use FO and FOP as the processor -->
<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.65.1/fo/docbook.xsl"/>
<xsl:param name="fop.extensions" select="1"/>
<xsl:param name="draft.mode" select="'no'"/>
- <!-- Including our others customized templates -->
+ <!-- Including our others customized templates -->
<xsl:include href="print/lfs-index.xsl"/>
<xsl:include href="print/lfs-pagesetup.xsl"/>
- <!-- Probably want to make the paper size configurable -->
+ <!-- Probably want to make the paper size configurable -->
<xsl:param name="paper.type" select="'A4'"/>
- <!-- Printing Style -->
+ <!-- Printing Style -->
<xsl:param name="double.sided" select="1"/>
<xsl:param name="hyphenate">true</xsl:param>
<xsl:param name="alignment">justify</xsl:param>
- <!-- Hyphenate links -->
+ <!-- Hyphenate links -->
<xsl:param name="ulink.hyphenate" select="' '"></xsl:param>
- <!-- Font size -->
+ <!-- Font size -->
<xsl:param name="body.font.master">8</xsl:param>
<xsl:param name="body.font.size">10pt</xsl:param>
- <!-- TOC stuff -->
+ <!-- TOC stuff -->
<xsl:param name="generate.toc">
book toc
part nop
@@ -37,18 +36,17 @@
<xsl:param name="generate.section.toc.level" select="-1"></xsl:param>
<xsl:param name="toc.indent.width" select="18"></xsl:param>
- <!-- Page number in Xref-->
- <xsl:param name="insert.xref.page.number">yes</xsl:param>
- <xsl:template match="*" mode="page.citation">
- <xsl:param name="id" select="'???'"/>
- <fo:inline keep-together.within-line="always">
- <xsl:text>[p</xsl:text>
+ <!-- Page number in Xref-->
+ <xsl:param name="insert.xref.page.number">yes</xsl:param> <xsl:template match="*" mode="page.citation">
+ <xsl:param name="id" select="'???'"/>
+ <fo:inline keep-together.within-line="always">
+ <xsl:text>[p</xsl:text>
<fo:page-number-citation ref-id="{$id}"/>
- <xsl:text>]</xsl:text>
- </fo:inline>
- </xsl:template>
+ <xsl:text>]</xsl:text>
+ </fo:inline>
+ </xsl:template>
- <!-- Prevent duplicate e-mails in the Acknowledgments pages-->
+ <!-- Prevent duplicate e-mails in the Acknowledgments pages-->
<xsl:param name="ulink.show" select="0"/>
</xsl:stylesheet>