[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: How do I mirror Copyright text in the footer?
Hi guys, Could someone help me with some XSL code? I have a footer which has the following logo and text (which appears at
the bottom, left-hand side of odd pages): LOGO Copyright 2005 Orion Ltd Now, I want the mirror image of this exact same
footer, except on the even pages. The following should appear on the bottom right-hand
side of the even pages: Copyright 2005 Orion Ltd LOGO This is the code I have used in my XSL Stylesheet: <!-- Footers! --> <xsl:template name="footer.table"> <xsl:choose> <xsl:when test="$pageclass = 'titlepage' and
$sequence='first'"> <!-- no, book titlepages have
no footers at all --> </xsl:when>
<xsl:when
test="$pageclass = 'titlepage'
and $sequence = 'even'">
</xsl:when>
<xsl:when
test="$pageclass = 'lot' and $sequence =
'first'"> </xsl:when>
<xsl:when
test="$sequence = 'blank'"> <!--
nothing for blank pages --> </xsl:when>
<xsl:otherwise> <fo:external-graphic
height="-1.0pt" scaling="uniform"
space-before="5pt" src="url(file:///C%3A/Program%20Files/DocBook/images/orionlogosmall.png)"
width="5.63pt"/> <fo:block
hyphenate="false" line-height="10.3pt" space-before="0pt" margin-left="58.0pt"> <fo:inline font-family="Arial,
sans-serif" font-size="7.0pt"> Copyright 2005 Orion Systems
International Limited </fo:inline> </fo:block> </xsl:otherwise> </xsl:choose> </xsl:if> </xsl:template> Thanks and regards,
|
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]