Claudio Li wrote:
>
> Have just upgraded to XXE Pro 4.5. Find that topics are generated as one
> HTML file ("Map>Convert Document>Convert to XHTML").
I guess that your map file contains a root topicref. That is, all
topicrefs are nested in the topmost topicref.
> Is there anyway to
> generate multiple files like it was before? (e.g. index.html plus other
> files of the same filename as the .dita topic files)
>
Explicitly specify chunk and copy-to attributes in your map file. This
is explained here:
XMLmind DITA Converter Manual - Customizing the look of the PDF files
generated by ditac -
http://www.xmlmind.com/ditac/_distrib/doc/manual/manual-6.html#customAttributeSet
Example of such map:
---
<bookmap chunk="by-document">
<title>XMLmind DITA Converter Manual</title>
<frontmatter>
<booklists>
<toc chunk="to-content" copy-to="index.html"/>
<figurelist chunk="to-content"/>
<tablelist chunk="to-content"/>
</booklists>
<bookabstract chunk="to-content" href="introduction.dita"/>
</frontmatter>
<part chunk="to-content" navtitle="Using XMLmind DITA Converter">
<chapter chunk="to-content" href="install.dita">
<topicref href="distrib.dita"/>
</chapter>
<chapter chunk="to-content" navtitle="Getting started">
<topicref href="quickStart.dita"/>
<topicref href="chunking.dita"/>
</chapter>
<chapter chunk="to-content" href="commandLine.dita"/>
<chapter chunk="to-content" href="xsltParams.dita"/>
</part>
<part chunk="to-content"
navtitle="Customizing the output of XMLmind DITA Converter">
<chapter chunk="to-content" navtitle="Simple customization">
<topicref href="customCSS.dita"/>
<topicref href="customAttributeSet.dita"/>
</chapter>
<chapter chunk="to-content" href="specialize.dita"/>
<chapter chunk="to-content" href="howItWorks.dita"
navtitle="Extensive customization"/>
</part>
<part chunk="to-content"
navtitle="Embedding XMLmind DITA Converter in a Java? application">
<chapter chunk="to-content" href="embed1.dita"/>
<chapter chunk="to-content" href="embed2.dita"/>
</part>
<appendix chunk="to-content" href="limitations.dita"/>
<backmatter>
<booklists>
<indexlist chunk="to-content"/>
</booklists>
</backmatter>
</bookmap>
---