我正在尝试在 OpenXml 中创建这个结构:
<P>
<Table />
<Caption>Table 1 - Some Text 1 </Caption>
<Picture />
<Caption>Figure 1 - Some Text 2 </Caption>
</P>
就代码而言,我有:
var currentLine = new Paragraph();
currentLine.AppendChild(new Run(elem)); -> Where the elem is Table
...
currentLine.AppendChild(new Run(elem2)); -> Where the elem2 is Drawing
所以我只是想念添加标题的方式,我可以在 MS Word References-> Insert Caption 中做同样的标题。
一些如何实现这一点的信息将不胜感激。
瑞