cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

Arbortext AAD, Superscript in Stylesheet

GregoryMackenzi
1-Newbie

Arbortext AAD, Superscript in Stylesheet

I found another problem, there was no xsl:template match for <superScript> or <subScript> so I wasn't getting the correct formatting in my PDF output. So I added some statements at the very end of foPara.xsl right before the last </xsl:stylesheet> to fix this:

    <!-- ===================================================================== -->

    <!--L3 Modification for markup superScript and subScript-->

    <xsl:template match="superScript">

      <fo:inline baseline-shift="super" font-size="smaller">

      <xsl:apply-templates />

      </fo:inline>

    </xsl:template>

    <xsl:template match="subScript">

      <fo:inline baseline-shift="sub" font-size="smaller">

      <xsl:apply-templates />

      </fo:inline>

    </xsl:template>

    <!--End L3 Modification-->

    <!-- ===================================================================== -->

</xsl:stylesheet> <!--this is the last closing tag-->

I'm not sure if anyone else has run into this at the same version I'm using (Editor 5.3, CSDB 4.3 M060), but it might prove useful.

Greg

🙂

0 REPLIES 0
Top Tags