diff options
Diffstat (limited to 'docs/xslt/fo.xsl')
-rw-r--r-- | docs/xslt/fo.xsl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/xslt/fo.xsl b/docs/xslt/fo.xsl new file mode 100644 index 0000000000..f9a78395da --- /dev/null +++ b/docs/xslt/fo.xsl @@ -0,0 +1,21 @@ +<?xml version='1.0'?> +<!-- vim:set sts=2 shiftwidth=2 syntax=xml: --> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<xsl:import href="../settings.xsl"/> +<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/> + +<xsl:param name="paper.type"> + <xsl:choose> + <xsl:when test="$papersize = 'a4paper'"> + <xsl:text>A4</xsl:text> + </xsl:when> + <xsl:when test="$papersize = 'letter'"> + <xsl:text>USletter</xsl:text> + </xsl:when> + </xsl:choose> +</xsl:param> + + +</xsl:stylesheet> |