XSL File
(Style - PDF)

<xsl:template name="q1">
<fo:block font-size="10pt" text-align="left" text-align-last="0"
    space-before.optimum="0" font-weight="normal">
    <xsl:choose>
        <xsl:when test="//foundinfo/Q1=''">
            <xsl:text>No information provided</xsl:text>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="//foundinfo/Q1"/>
        </xsl:otherwise>
    </xsl:choose>
</fo:block>
</xsl:template>