On 12/15/2010 02:27 PM, Alberto Perri wrote: > the XMLmind XSL Utility tool you developed is fantastic. I getting familiar > with it and enjoying it very much.
Thanks for the compliments. > Right now i am using it to convert DITAmap (that referece ditafiles) to > *.docx and *.odt. This works great. The problem i am having though is > how to have tables take up the width of the page in *.docx and *.odt files. > If you are using the DITA XSL stylesheets which come with XMLmind XSL Utility, I don't see how this could be possible: the tables always occupy fully the available width. See attached Test.dita (not a map, just a topic file, but this does not matter in this case), Test.docx, Test.odt. May be your question is about the left and right margins of a page which, by default, are too wide for your taste? May be you are talking about the support of standard DITA attribute "expanse"? See http://docs.oasis-open.org/dita/v1.1/OS/langspec/common/display-atts.html. The "expanse" attribute is currently not supported by our tools. See http://www.xmlmind.com/ditac/_distrib/doc/manual/limitations.html#limitations
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE topic PUBLIC "-//OASIS//DTD DITA 1.1 Topic//EN"
"topic.dtd">
<topic id="Test">
<title>Test</title>
<body>
<p>Test</p>
<simpletable>
<strow>
<stentry>1,1</stentry>
<stentry>1,2</stentry>
</strow>
<strow>
<stentry>2,1</stentry>
<stentry>2,2</stentry>
</strow>
</simpletable>
<p>Test</p>
<table>
<title>Test</title>
<tgroup cols="2">
<tbody>
<row>
<entry>1,1</entry>
<entry>1,2</entry>
</row>
<row>
<entry>2,1</entry>
<entry>2,2</entry>
</row>
</tbody>
</tgroup>
</table>
</body>
</topic>
Test.docx
Description: application/vnd.openxmlformats-officedocument.wordprocessingml.document
Test.odt
Description: application/vnd.oasis.opendocument.text
-- XMLmind FO Converter Support List [email protected] http://www.xmlmind.com/mailman/listinfo/xfc-support

