Ignore:
Timestamp:
09/11/2004 09:10:07 PM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
6.0
Children:
3f6be93
Parents:
0e9a9e2
Message:

In the PDF output, added support for line break,
changed the tagging in splitted URLs, and changed chapter title font size to 21pt.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/pdf/lfs-mixed.xsl

    r0e9a9e2 rc5143c9  
    1111  <xsl:template match="beginpage">
    1212    <fo:block break-after="page"/>
     13  </xsl:template>
     14 
     15    <!-- Allow forced line breaks inside paragraphs emulating literallayout. -->
     16 <xsl:template match="para">
     17    <xsl:choose>
     18      <xsl:when test="./@remap='verbatim'">
     19        <fo:block wrap-option="no-wrap"
     20                    white-space-collapse="false"
     21                    white-space-treatment="preserve"
     22                    text-align="start"
     23                    linefeed-treatment="preserve">
     24          <xsl:call-template name="anchor"/>
     25          <xsl:apply-templates/>
     26        </fo:block>
     27      </xsl:when>
     28      <xsl:otherwise>
     29        <xsl:apply-imports/>
     30      </xsl:otherwise>
     31    </xsl:choose>
    1332  </xsl:template>
    1433
Note: See TracChangeset for help on using the changeset viewer.