diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-07-05 22:31:18 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-07-05 22:31:18 +0000 |
commit | b3a7074bf3ff05792c06c88b3127df8708c24239 (patch) | |
tree | ace923a61f29e0bffbe1c5c59a1c68877fffb571 /stylesheets/lfs-pdf.xsl | |
parent | 3a1e4220080239c9fb9e2c9bae0ff2d192be7324 (diff) |
Start using the new stylesheets.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8201 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets/lfs-pdf.xsl')
-rw-r--r-- | stylesheets/lfs-pdf.xsl | 58 |
1 files changed, 10 insertions, 48 deletions
diff --git a/stylesheets/lfs-pdf.xsl b/stylesheets/lfs-pdf.xsl index e9c15a21a..77037003c 100644 --- a/stylesheets/lfs-pdf.xsl +++ b/stylesheets/lfs-pdf.xsl @@ -1,56 +1,18 @@ <?xml version='1.0' encoding='ISO-8859-1'?> +<!-- +$LastChangedBy: manuel $ +$Date: 2007-05-19 20:43:37 +0200 (sáb, 19 may 2007) $ +--> + <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns="http://www.w3.org/1999/xhtml" version="1.0"> - <!-- We use FO and FOP as the processor --> - <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.69.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="pdf/lfs-index.xsl"/> - <xsl:include href="pdf/lfs-pagesetup.xsl"/> - <xsl:include href="pdf/lfs-sections.xsl"/> - <xsl:include href="pdf/lfs-admon.xsl"/> - <xsl:include href="pdf/lfs-mixed.xsl"/> - <xsl:include href="pdf/lfs-xref.xsl"/> - - <!-- This file contains our localization strings (for internationalization) --> - <xsl:param name="local.l10n.xml" select="document('lfs-l10n.xml')"/> - - <!-- Standart paper size --> - <xsl:param name="paper.type" select="'letter'"/> - - <!-- 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 --> - <!-- Change "double.sided" to "1" for published versions --> - <xsl:param name="double.sided" select="0"/> - <xsl:param name="hyphenate">false</xsl:param> - <xsl:param name="alignment">justify</xsl:param> - - <!-- Font size --> - <xsl:param name="body.font.master">9</xsl:param> - <xsl:param name="body.font.size">12pt</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> + <!-- LFS top-level pdf templates. --> + <xsl:import href="lfs-xsl/pdf.xsl"/> - <!-- Prevent duplicate e-mails in the Acknowledgments pages--> - <xsl:param name="ulink.show" select="0"/> + <!-- The LFS book type to be processed (lfs, blfs, clfs, or hlfs) --> + <xsl:param name="book-type">lfs</xsl:param> </xsl:stylesheet> |