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] | [Elist Home]


Subject: Re: DOCBOOK-APPS: passivetex reading xslt fo file?


* Marc Haber; <mh+docbook-apps@zugschlus.de> on 12 Jun, 2002 wrote:
>> >Do I understand correctly that xsltproc wrote a fo file that
>> >passivetex can't read? Can this issue be fixed?
>> 
>> Have you enabled passivetex extensesion ? By default they are not on
>
>I did not specifically enable them. How do I do that? THe only file I
>have written myself is the XML input, and the XSL file is from the
>distribution.

Create a customization xsl stylesheet lile below. Have a look to
param.xsl for more parameters
-- 

Togan Muftuoglu

<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
	version="1.0"
xmlns:fo="http://www.w3.org/1999/XSL/Format";>


<xsl:import href="/path/to/your//docbook-xsl-stylesheets-1.50.0/fo/docbook.xsl"/>
<!-- this is either html or fo -->

<xsl:param name="stylesheet.result.type"
              select="'fo'"/>
<!-- Shall we use extensions -->
<!-- PDF bookmarks and index terms -->
<!-- xep is PDF bookmarks and document information -->
<xsl:param name="use.extensions" select="'1'"/>   <!-- must be on -->
<xsl:param name="xep.extensions" select="0"/>      
<xsl:param name="fop.extensions" select="0"/>     
<xsl:param name="saxon.extensions" select="0"/>   
<xsl:param name="passivetex.extensions" select="1"/>
<xsl:param name="tablecolumns.extension" select="'1'"/>

<!-- End Extensions part -->

</xsl:stylesheet>




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


Powered by eList eXpress LLC