2004-05-08 15:19:53 +01:00
|
|
|
<?xml version='1.0' encoding='ISO-8859-1'?>
|
|
|
|
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
|
|
|
version="1.0">
|
2004-05-19 21:16:58 +01:00
|
|
|
<!-- We use FO and FOP as the processor -->
|
2004-07-13 17:15:34 +01:00
|
|
|
<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.65.1/fo/profile-docbook.xsl"/>
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:param name="fop.extensions" select="1"/>
|
|
|
|
<xsl:param name="draft.mode" select="'no'"/>
|
|
|
|
|
2004-05-19 21:16:58 +01:00
|
|
|
<!-- Including our others customized templates -->
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:include href="print/lfs-index.xsl"/>
|
|
|
|
<xsl:include href="print/lfs-pagesetup.xsl"/>
|
|
|
|
|
2004-07-13 17:15:34 +01:00
|
|
|
<!-- Paper size required by the publisher -->
|
|
|
|
<xsl:param name="paper.type" select="'Cunstommized'"/>
|
|
|
|
<xsl:param name="page.width">7.25in</xsl:param>
|
|
|
|
<xsl:param name="page.height">9.25in</xsl:param>
|
2004-05-08 15:19:53 +01:00
|
|
|
|
2004-05-19 21:16:58 +01:00
|
|
|
<!-- Printing Style -->
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:param name="double.sided" select="1"/>
|
2004-07-13 17:15:34 +01:00
|
|
|
<xsl:param name="hyphenate">false</xsl:param>
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:param name="alignment">justify</xsl:param>
|
|
|
|
|
2004-05-19 21:16:58 +01:00
|
|
|
<!-- Font size -->
|
2004-07-13 17:15:34 +01:00
|
|
|
<xsl:param name="body.font.master">6</xsl:param>
|
|
|
|
<xsl:param name="body.font.size">8pt</xsl:param>
|
2004-05-08 15:19:53 +01:00
|
|
|
|
2004-05-19 21:16:58 +01:00
|
|
|
<!-- TOC stuff -->
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:param name="generate.toc">
|
|
|
|
book toc
|
|
|
|
part nop
|
|
|
|
</xsl:param>
|
|
|
|
<xsl:param name="toc.section.depth">1</xsl:param>
|
|
|
|
<xsl:param name="generate.section.toc.level" select="-1"></xsl:param>
|
|
|
|
<xsl:param name="toc.indent.width" select="18"></xsl:param>
|
|
|
|
|
2004-05-19 21:16:58 +01:00
|
|
|
<!-- 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>
|
2004-05-08 15:19:53 +01:00
|
|
|
<fo:page-number-citation ref-id="{$id}"/>
|
2004-05-19 21:16:58 +01:00
|
|
|
<xsl:text>]</xsl:text>
|
|
|
|
</fo:inline>
|
|
|
|
</xsl:template>
|
2004-05-08 15:19:53 +01:00
|
|
|
|
2004-05-19 21:16:58 +01:00
|
|
|
<!-- Prevent duplicate e-mails in the Acknowledgments pages-->
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:param name="ulink.show" select="0"/>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|