diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2011-10-10 02:59:11 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2011-10-10 02:59:11 +0000 |
commit | a7f0b27405b12ab23f20f37261a62d127781281d (patch) | |
tree | cbc466830b034060e93d9963ebf90efc01cc6abd /stylesheets | |
parent | 5dbeba9b1c6d90f94d3d44b37422f50f322ded0e (diff) |
Fix a pdf rendering issue
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9623 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets')
-rw-r--r-- | stylesheets/lfs-xsl/pdf/lfs-mixed.xsl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stylesheets/lfs-xsl/pdf/lfs-mixed.xsl b/stylesheets/lfs-xsl/pdf/lfs-mixed.xsl index 4a0647f74..550a4a52b 100644 --- a/stylesheets/lfs-xsl/pdf/lfs-mixed.xsl +++ b/stylesheets/lfs-xsl/pdf/lfs-mixed.xsl @@ -108,6 +108,9 @@ $Date$ <xsl:otherwise> <xsl:choose> <xsl:when test="ancestor::appendix">auto</xsl:when> + <!-- Modified by Bruce Dubbs. Allow user to specify + automatic screen formatting to split across pages. --> + <xsl:when test="@role='auto'">auto</xsl:when> <xsl:otherwise>always</xsl:otherwise> </xsl:choose> </xsl:otherwise> |