gpt4 book ai didi

c# - OpenXml Word 脚注

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:21 25 4
gpt4 key购买 nike

我正在尝试遍历 Word 文档并从中提取脚注,并引用它们在段落中的位置。
我不知道该怎么做。

我看到为了获得所有脚注我可以这样做:

FootnotesPart footnotesPart = doc.MainDocumentPart.FootnotesPart;
if (footnotesPart != null)
{
IEnumerable<Footnote> footnotes = footnotesPart.Footnotes.Elements<Footnote>();

foreach (var footnote in footnotes)
{
...
}
}

但是,我不知道如何知道每个脚注在段落中的位置。
例如,我想做一个脚注,然后将其放在文本中之前作为脚注的地方的括号中。
我该怎么做?

最佳答案

您必须找到与 FootNote 具有相同 ID 的 FootnoteReference 元素。这将为您提供脚注所在的 Run 元素。

示例代码:

FootnotesPart footnotesPart = doc.MainDocumentPart.FootnotesPart;
if (footnotesPart != null)
{
var footnotes = footnotesPart.Footnotes.Elements<Footnote>();
var references = doc.MainDocumentPart.Document.Body.Descendants<FootnoteReference>().ToArray();
foreach (var footnote in footnotes)
{
long id = footnote.Id;
var reference = references.Where(fr => (long)fr.Id == id).FirstOrDefault();
if (reference != null)
{
Run run = reference.Parent as Run;
reference.Remove();
var fnText = string.Join("", footnote.Descendants<Run>().SelectMany(r => r.Elements<Text>()).Select(t => t.Text)).Trim();
run.Parent.InsertAfter(new Run(new Text("(" + fnText + ")")), run);
}
}
}
doc.MainDocumentPart.Document.Save();
doc.Close();

关于c# - OpenXml Word 脚注,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40343583/

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