字符串长度后强制换行

时间:2016-04-23 12:16:30

标签: xslt xsl-fo antenna-house

我希望在使用AH Formatter生成的PDF中字符串长度为14个字符后强制换行。所以这是我的xsl代码,没有任何破线的尝试:

<xsl:attribute-set name="big" use-attribute-sets="bold">
  <xsl:attribute name="font-size">38pt</xsl:attribute>
  <xsl:attribute name="line-height">28.84pt</xsl:attribute>
  <xsl:attribute name="text-align">center</xsl:attribute>
  <xsl:attribute name="letter-spacing">1mm</xsl:attribute>
</xsl:attribute-set>

<xsl:attribute-set name="small" use-attribute-sets="bold">
  <xsl:attribute name="font-size">27pt</xsl:attribute>
  <xsl:attribute name="line-height">27pt</xsl:attribute>
  <xsl:attribute name="text-align">center</xsl:attribute>
  <xsl:attribute name="letter-spacing">1mm</xsl:attribute>
</xsl:attribute-set>

<xsl:choose>
   <xsl:when test="string-length($count_cover)>=14">
      <fo:block xsl:use-attribute-sets="small">
         <xsl:apply-templates/>
      </fo:block>
    </xsl:when>
    <xsl:otherwise>          
      <fo:block xsl:use-attribute-sets="big">
         <xsl:apply-templates/>
      </fo:block>
   </xsl:otherwise>
</xsl:choose>

是否可以使用XSL-FO强行换行?

3 个答案:

答案 0 :(得分:1)

如果标题可以转换为字符串,则可以插入<fo:block/>作为换行符。

<xsl:variable name="cover_title" as="xs:string" select="'Very Long Cover Title! Very Long Cover Title! Very Long Cover Title! '"/>
<xsl:variable name="count_cover" as="xs:integer" select="string-length($cover_title)"/>
<xsl:variable name="lf_position" as="xs:integer" select="14"/>

<xsl:template match="/">
    <xsl:choose>
        <xsl:when test="$count_cover gt $lf_position">
            <fo:block xsl:use-attribute-sets="small">
                <xsl:analyze-string select="$cover_title" regex=".<fo:block font-weight="bold" font-size="27pt" line-height="27pt" text-align="center" letter-spacing="1mm">Very Long Cove<fo:block/>r Title! Very Long Cover Title! Very Long Cover Title! </fo:block>
">
                    <xsl:matching-substring>
                        <xsl:value-of select="."/>
                        <xsl:if test="position() eq $lf_position">
                            <fo:block/>
                        </xsl:if>
                    </xsl:matching-substring>
                    <xsl:non-matching-substring/>
                </xsl:analyze-string>
            </fo:block>
        </xsl:when>
        <xsl:otherwise>
            <fo:block xsl:use-attribute-sets="big">
                <xsl:value-of select="$cover_title"/>
            </fo:block>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

结果:

<fo:block-container position="absolute" top="..." left="..." width="..." height="..." overflow="condense" axf:overflow-condense="font-size" font-size="27pt" text-align="center">
    <fo:block>
       <fo:inline>Very Long Cover Title! Very Long Cover Title! Very Long Cover Title!</fo:inline>
    </fo:block>
</fo:block-container>

然而,这种方法忽略了单词边界和连字控制。如果您打算制作书籍封面标题,最好使用fo:block-container引入AH Formatter扩展名。

  1. 在封面页中使用fo:block-container作为固定位置和大小的标题。
  2. 设置属性@overflow =&#34;压缩&#34;与@axf:overflow-condense =“font-size&#34;。 https://www.antennahouse.com/product/ahf60/docs/ahf-ext.html#axf.overflow-condense
  3. 在fo:block-container内,放置fo:存储标题内容的块。
  4. 您可以获得所需的结果,因为AH Formatter会根据内容量自动调整字体大小。
  5. [实施例]

    input.close();
    

答案 1 :(得分:1)

  1. 如果你试图打破单词(而不是,例如,部分号码),那么启用连字符可能会比在固定数量的字符后打破更好的结果。

  2. 您可以使用linefeed-treatment="preserve"并插入&#xA;代替fo:block,这是Inserting a line break in a PDF generated from XSL FO using <xsl:value-of>笔记的答案。您可以使用<xsl:value-of select="replace(., '(.{14})', '$1&#xA;')" />

  3. 执行此操作
  4. 您可以在每第14个字符后插入一个零宽度空格&#x200B;,让AH Formatter在零宽度空间中断:

    <xsl:template match="text()"> <xsl:value-of select="replace(replace(., '(\P{Zs}{14})', '$1&#x200B;'), '&#x200B;(\p{Zs})', '$1')" /> </xsl:template>

    内部replace()在每14个非空格字符后插入字符,如果第15个字符是空格字符,则外部replace()会修复它。

    如果您使用的是比例宽度字体,则某些14个字符的序列(不包括例如14个恒定宽度的衬里数字)将比其他字符具有更多或更少的宽度,因此您可能希望插入{{1}在更多字符之间,以便AH Formatter可以在破坏之前尽力填充该行。

  5. 您可以使用&#x200B;在单词中启用换行功能。请参阅https://www.antennahouse.com/product/ahf63/ahf-ext.html#axf.word-break

答案 2 :(得分:0)

您不能在FO中强制换行,但您可以将字符串拆分为单独的FO块。

<xsl:choose>
  <xsl:when test="string-length($count_cover) &gt;= 14">
    <fo:block><xsl:value-of select="substring($count_cover, 1, 13)"/></fo:block>
    <fo:block><xsl:value-of select="substring($count_cover, 14)"/></fo:block>
  </when>
  <xsl:otherwise>
    <fo:block>
      <xsl:value-of select="$count_cover"/>
    </fo:block>
  </xsl:otherwise>
</xsl:choose>