diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-08-10 21:28:38 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-08-10 21:28:38 +0000 |
commit | 68729574caf276733ee8d23b96c1b7d507ea46b1 (patch) | |
tree | 8ff6a7b512fb9c293c71730d94a7ad490b7ccbe3 /stylesheets/lfs-print.xsl | |
parent | a112251b966af505544593171443b560d031d54c (diff) |
Renamed the print stylesheets to pdf.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4028 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets/lfs-print.xsl')
-rw-r--r-- | stylesheets/lfs-print.xsl | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/stylesheets/lfs-print.xsl b/stylesheets/lfs-print.xsl deleted file mode 100644 index 457396bc3..000000000 --- a/stylesheets/lfs-print.xsl +++ /dev/null @@ -1,46 +0,0 @@ -<?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"> - <!-- 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 --> - <xsl:include href="print/lfs-index.xsl"/> - <xsl:include href="print/lfs-pagesetup.xsl"/> - <xsl:include href="print/lfs-sections.xsl"/> - <xsl:include href="print/lfs-mixed.xsl"/> - - <!-- Paper size required by the publisher --> - <xsl:param name="paper.type" select="'Customized'"/> - <xsl:param name="page.width">7.25in</xsl:param> - <xsl:param name="page.height">9.25in</xsl:param> - - <!-- Printing Style --> - <xsl:param name="double.sided" select="1"/> - <xsl:param name="hyphenate">false</xsl:param> - <xsl:param name="alignment">justify</xsl:param> - - <!-- Font size --> - <xsl:param name="body.font.master">6</xsl:param> - <xsl:param name="body.font.size">8pt</xsl:param> - - <!-- TOC stuff --> - <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> - - <!-- Page number in Xref ?--> - <xsl:param name="insert.xref.page.number">no</xsl:param> - - <!-- Prevent duplicate e-mails in the Acknowledgments pages--> - <xsl:param name="ulink.show" select="0"/> - -</xsl:stylesheet> |