I have a table defined in docx as follow.
- Code: Select all
<w:tbl>
<w:tblPr />
- <w:tr>
- <w:tc>
- <w:p>
- <w:r>
- <w:rPr>
<w:b w:val="true" />
</w:rPr>
<w:t />
</w:r>
</w:p>
</w:tc>
</w:tr>
- <w:tr>
- <w:tc>
- <w:p>
- <w:r>
- <w:rPr>
<w:b w:val="false" />
</w:rPr>
<w:t>some text here...</w:t>
</w:r>
</w:p>
</w:tc>
</w:tr>
- <w:tr>
- <w:tc>
- <w:p>
- <w:r>
- <w:rPr>
<w:b w:val="false" />
</w:rPr>
<w:t>some text here</w:t>
</w:r>
</w:p>
</w:tc>
</w:tr>
</w:tbl>
When I show the table in word 2010 it is a small table with one column and three rows, containing the correct information. When I convert it to PDF the data is still correct, but the table's width is wrong. In PDF it takes the width of the whole page.
Can this be fixed?
Thx.
Timothy