gpt4 book ai didi

openxml-sdk - 向 Word 文档添加自定义标题

转载 作者:行者123 更新时间:2023-12-04 04:56:43 30 4
gpt4 key购买 nike

我正在尝试使用 Office Open XML SDK 向 Word 文档添加自定义标题。我想继承默认的 Heading1 样式,但出于某种原因,下面的代码从头开始创建了一个 style.xml 文件,并且只包含我的新样式。

我希望生成的styles.xml 还包含默认样式(Normal、Heading1、Heading2、Heading3...)。我该怎么办?

这是我的代码:

        using (var package = WordprocessingDocument.Create(tempPath, WordprocessingDocumentType.Document))
{
// Add a new main document part.
var mainPart = package.AddMainDocumentPart();

var stylePart = mainPart.AddNewPart<StyleDefinitionsPart>();

// we have to set the properties
var runProperties = new RunProperties();
runProperties.Append(new Color { Val = "000000" }); // Color
runProperties.Append(new RunFonts { Ascii = "Arial" }); // Font Family
runProperties.Append(new Bold()); // it is Bold
runProperties.Append(new FontSize { Val = "28" }); //font size (in 1/72 of an inch)

//creation of a style
var style = new Style
{
StyleId = "MyHeading1",
Type = StyleValues.Paragraph,
CustomStyle = true
};
style.Append(new StyleName { Val = "My Heading 1" }); //this is the name
// our style based on Heading1 style
style.Append(new BasedOn { Val = "Heading1" });
// the next paragraph is Normal type
style.Append(new NextParagraphStyle { Val = "Normal" });
style.Append(runProperties);//we are adding properties previously defined

// we have to add style that we have created to the StylePart
stylePart.Styles = new Styles();
stylePart.Styles.Append(style);
stylePart.Styles.Save(); // we save the style part

...
}

这是生成的styles.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<w:styles xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<w:style w:type="paragraph" w:styleId="MyHeading1" w:customStyle="true">
<w:name w:val="My Heading 1" />
<w:basedOn w:val="Heading1" />
<w:next w:val="Normal" />
<w:rPr>
<w:color w:val="000000" />
<w:rFonts w:ascii="Arial" />
<w:b />
<w:sz w:val="28" />
</w:rPr>
</w:style>
</w:styles>

最佳答案

我相信这是因为您正在从头开始创建一个新文档,而不是将您的文档基于模板。我认为默认 样式来自您的 Normal.dotm 模板(在 C:\Users\<userid>\AppData\Roaming\Microsoft\Templates 中),并且您需要以此为基础创建文档。我所做的是将模板复制到文档文件名并更改文档类型(来自 VB.NET 的未经测试的 C# 翻译):

public WordprocessingDocument CreateDocumentFromTemplate(string templateFileName, string docFileName)
{
File.Delete(docFileName);
File.Copy(templateFileName, docFileName);
var doc = WordprocessingDocument.Open(docFileName, true);
doc.ChangeDocumentType(WordprocessingDocumentType.Document);
return doc;
}

您的代码将类似于:

using (var doc = CreateDocumentFromTemplate(normalTemplatePath, tempPath))
{
var stylePart = doc.MainDocumentPart.StyleDefinitionsPart;
...
}

希望有帮助!

关于openxml-sdk - 向 Word 文档添加自定义标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16659134/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com