Michael Eager wrote:
> I get different PDF output when I use XMLmind to generate DocBook
> output than when I use RenderX as a stand-alone program.
>
> What is the command line used to invoke RenderX?
--> XMLmind XML Editor does not invoke command-line tools such as Saxon,
RenderX XEP, FOP, etc. Instead, it loads the ``engine part'' of these
tools, which is more reliable, more efficient and easier to deploy.
A plug-in has been developed to integrate the RenderX XEP engine into
XMLmind.
You can download and install this plug-in using Options|Install Add-ons.
This plug-in requires XMLmind XML Editor Professional Edition in order
to work, unless you use it with RenderX XEP *Personal* Edition.
--> If you are already using this plug-in:
[1] We don't understand how you could get different output when you use
the RenderX XEP command line.
Our guess is that this is not related to RenderX XEP at all, but
instead, this is caused by the parameters passed by XMLmind to the
DocBook XSL style sheet.
[2] You'll find these parameters in
XXE_install_dir/addon/config/docbook/xslMenu.incl.
Please open this file using a text editor and search string "docb.toPS".
DocBook XSL style sheets, and then RenderX XEP, are applied to the
document being edited by the means of a ``process command''.
What follows is the part of process command "docb.toPS" which might
interest you:
------------------------------------------------------------------
<transform stylesheet="xsl/fo/docbook.xsl"
file="__doc.xml" to="__doc.fo">
<parameter name="use.extensions">1</parameter>
<!-- Cannot work and generates a lot of error messages. -->
<parameter name="graphicsize.extension">0</parameter>
<parameter name="paper.type">A4</parameter>
<parameter name="generate.toc">%2</parameter>
<parameter name="toc.section.depth">3</parameter>
<parameter name="section.autolabel">%3</parameter>
<parameter name="callout.graphics">1</parameter>
<parameter name="shade.verbatim">1</parameter>
<parameter name="ulink.show">0</parameter>
<parameterGroup name="docb.toPS.transformParameters" />
</transform>
---------------------------------------------------------------
The documentation of process commands is found here:
http://www.xmlmind.com/xmleditor/_distrib/doc/commands/process.html
Customizing the DocBook XSL style sheets (without having to modify the
stock configuration files) is explained here:
"Customizing the XSL style sheets used by the above Convert commands"
http://www.xmlmind.com/xmleditor/_distrib/doc/docbook/docbook_menu.html#docbook_convert_menu
and more extensively here:
http://www.xmlmind.com/xmleditor/_distrib/doc/configure/customizing.html