我正在尝试生成一个包含一些空格的报告,以使内容看起来不错。但问题是出于某种原因,在某些情况下,空间的数量正在被固定甚至减少。
例如,我的内容应该如下所示:
格式化文字
但它看起来像这样
未格式化文字
并且xslt块看起来像这样:
<fo:block white-space-collapse="false" usage-context-of-suppress-at-line-break="ignore">
<xsl:variable name="report_text">
<value>
<xsl:value-of select="REPORT_TEXT" />
</value>
</xsl:variable>
<xsl:value-of select="DataConvertObject:ConvertToPlainText($report_text)" />
</fo:block>
任何想法?建议?
答案 0 :(得分:0)
我找到了解决方案,
问题是每个字母表中我选择的字体大小不同,所以我改变了这样的字体:
<fo:table-cell column-number="2" number-columns-spanned="5" font-family="Lucida Console" >
并且工作正常