我希望在使用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强行换行?
答案 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扩展名。
[实施例]
input.close();
答案 1 :(得分:1)
如果你试图打破单词(而不是,例如,部分号码),那么启用连字符可能会比在固定数量的字符后打破更好的结果。
您可以使用linefeed-treatment="preserve"
并插入

代替fo:block
,这是Inserting a line break in a PDF generated from XSL FO using <xsl:value-of>笔记的答案。您可以使用<xsl:value-of select="replace(., '(.{14})', '$1
')" />
您可以在每第14个字符后插入一个零宽度空格​
,让AH Formatter在零宽度空间中断:
<xsl:template match="text()">
<xsl:value-of
select="replace(replace(., '(\P{Zs}{14})', '$1​'),
'​(\p{Zs})',
'$1')" />
</xsl:template>
内部replace()
在每14个非空格字符后插入字符,如果第15个字符是空格字符,则外部replace()
会修复它。
如果您使用的是比例宽度字体,则某些14个字符的序列(不包括例如14个恒定宽度的衬里数字)将比其他字符具有更多或更少的宽度,因此您可能希望插入{{1}在更多字符之间,以便AH Formatter可以在破坏之前尽力填充该行。
​
在单词中启用换行功能。请参阅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) >= 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>