【发布时间】:2011-10-24 11:51:18
【问题描述】:
这是 Word 2003 XML 的示例段落。问题是,如何将其格式化为双行距?提前致谢!
<w:p>
<w:r>
<w:t>Paragraph is here.</w:t>
</w:r>
</w:p>
【问题讨论】:
这是 Word 2003 XML 的示例段落。问题是,如何将其格式化为双行距?提前致谢!
<w:p>
<w:r>
<w:t>Paragraph is here.</w:t>
</w:r>
</w:p>
【问题讨论】:
在你的 W:p 中,输入如下内容:
<w:pPr>
<w:spacing w:line="480" w:line-rule="auto" />
<w:ind w:left="720" w:first-line="720" />
</w:pPr>
【讨论】: