0

我在现有文档中生成和插入 xml 时遇到问题。

 <table:table table:template-name="default">
                <table:table-column />
                <table:table-column />
                <table:table-column />
                <table:table-row>
                  <table:table-cell>
                    <text:p>1</text:p>
                  </table:table-cell>
                  <table:table-cell>
                    <text:p>2</text:p>
                  </table:table-cell>
                  <table:table-cell>
                    <text:p>3</text:p>
                  </table:table-cell>
                </table:table-row>
</table:table>

此代码我成功插入到文档中(并且在文档 xml 中可见),但不可见以供阅读。底线:插入的 xml 存在于源中,但不可见。

xml 表示例取自:http ://user.services.openoffice.org/en/forum/viewtopic.php?f=10&t=28229

注意:生成的文档 xml 是有效的 - 这里没有标签不匹配。

我正在使用 OpenOffice 模板文档 (.ott)

4

1 回答 1

1

对不起,我的错:)我也在使用<table:list>并且应该首先关闭这些标签:

</text:list-item></text:list>
于 2011-07-07T09:09:08.293 回答