OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: display indexterms inline


While working on generating an index, I found it useful to produce a  
formatted version of my document that has the indexterms displayed  
where I entered them.

I accomplished this with the following customization.

However, this customization apparently caused a sidebar to be  
entirely omitted from the formatted result. Does this make sense?

Thanks,
Cheryl

<!-- display term in red, small font (for checking work on indexing) -->

<xsl:template match="indexterm" name="indexterm">


   <fo:block font-size="8pt">
     <fo:inline color="red">
         <xsl:value-of select="primary"/>
         <xsl:if test="secondary">
         , <xsl:value-of select="secondary"/>
         </xsl:if>
     </fo:inline>
   </fo:block>

</xsl:template>



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]