如何在jasper报告中下标字段

时间:2013-10-25 11:56:40

标签: jasper-reports

如何使字段显示为SubScript或显示文本基线下方的字段 当字体应用于报表时,我必须使用USPSIMBS标准字体应该打印的信息跳转或隐藏文本字段的上部区域,当我将信息的任何部分复制到字和下标时,它显示正确。

1 个答案:

答案 0 :(得分:4)

您可以使用样式标记来解决此任务,并使用下标文本的<sub>标记和上标文本的<sup>标记。

样本

jrxml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="test_markup" language="groovy" pageWidth="595" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="c3c991dc-b3f2-4d45-b429-821e33c5324d">
    <title>
        <band height="55" splitType="Stretch">
            <textField isStretchWithOverflow="true">
                <reportElement uuid="6b947a69-22bb-4a63-9e56-cacc75747df0" x="115" y="17" width="324" height="20"/>
                <textElement markup="styled">
                    <font isUnderline="false" isStrikeThrough="false"/>
                </textElement>
                <textFieldExpression><![CDATA["Text with<sup>superscript</sup> \nText with<sub>subscript</sub>"]]></textFieldExpression>
            </textField>
        </band>
    </title>
</jasperReport>

结果将是(通过 iReport 中的预览):

enter image description here

<强> 注意: