/usr/share/xml/docbook/stylesheet/db2latex/latex/docbook.xsl: <xsl:include href="common/l10n.xsl"/> <xsl:import href="common/common.xsl"/> (line 66) ^^^^ <xsl:include href="common/gentext.xsl"/> <xsl:include href="common/subtitles.xsl"/>
replacing import by include should fix it. The stylesheet is broken: http://www.w3schools.com/xsl/el_import.asp "Note: This element must appear as the first child node of <xsl:stylesheet> or <xsl:transform>." this is obviously not the case here. http://xml.apache.org/xalan-j/xsltc/xsl_include_design.html explain that a change from import to include only affect precedence. import is in hte base standard while include is only supported by extensions. BUt libxml2 support include very well . I would say: <xsl:include href="common/common.xsl"/> would fix it for good. Cheers Alban -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]