Changeset 4c0c012 for stylesheets


Ignore:
Timestamp:
01/04/2009 04:48:38 AM (15 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
77e2988
Parents:
a1712769
Message:

Reformatted several pages so pdf is properly generated.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8781 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
stylesheets/lfs-xsl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/lfs-xsl/docbook-xsl-snapshot/fo/lists.xsl

    ra1712769 r4c0c012  
    578578
    579579  <fo:block id="{$id}" xsl:use-attribute-sets="list.item.spacing" 
    580       keep-together.within-column="always"
     580      keep-together.within-column="auto"
    581581      keep-with-next.within-column="always">
    582582    <xsl:apply-templates select="term"/>
  • stylesheets/lfs-xsl/docbook-xsl-snapshot/fo/table.xsl

    ra1712769 r4c0c012  
    249249    <xsl:if test="$xep.extensions != 0">
    250250      <!-- Suggested by RenderX to workaround a bug in their implementation -->
    251       <xsl:attribute name="keep-together.within-column">always</xsl:attribute>
     251      <xsl:attribute name="keep-together.within-column">auto</xsl:attribute>
    252252    </xsl:if>
    253253    <xsl:if test="$rowsep &gt; 0">
  • stylesheets/lfs-xsl/pdf/lfs-mixed.xsl

    ra1712769 r4c0c012  
    100100            <xsl:value-of select="$keep.together"/>
    101101          </xsl:when>
     102
     103<!-- The following section has been modified by Martin Miehe. Page breaks
     104     should be allowed within the long script listings in the appendices.
     105
    102106          <xsl:otherwise>always</xsl:otherwise>
     107-->
     108          <xsl:otherwise>
     109            <xsl:choose>
     110              <xsl:when test="ancestor::appendix">auto</xsl:when>
     111              <xsl:otherwise>always</xsl:otherwise>
     112            </xsl:choose>
     113          </xsl:otherwise>
     114<!-- End of modification -->
     115
    103116        </xsl:choose>
    104117      </xsl:attribute>
     118
     119<!-- The following lines were inserted by Martin Miehe. Scripts and rules
     120     in the appendices should have a smaller font-size so that at least
     121     80 characters fit to one line. -->
     122
     123      <xsl:if test="ancestor::appendix">    <!-- name(/) != appendix" -->
     124        <xsl:attribute name="font-size">10pt</xsl:attribute>
     125      </xsl:if>
     126<!-- End of insertion. -->
     127
    105128      <xsl:apply-imports/>
    106129    </fo:block>
Note: See TracChangeset for help on using the changeset viewer.