word中的编号

发布于 2024-12-29 02:36:29 字数 422 浏览 1 评论 0原文

我正在写一个单词插件。

该插件应该更改Word中的编号列表。

原始列表:

  1. foo 1.1 foobara 1.2 foobar b 1.3 foobar c
  2. bar
  3. bar X
  4. bar Y

该插件删除 1.1 和 3。

生成的列表如下所示:

  1. foo 1.1 foobar b 1.2 foobar c
  2. bar
  3. bar Y

预期结果应该是:

  1. foo 1.2 foobar b 1.3 foobar c
  2. bar
  3. bar Y

如何实现?

提前致谢 托比

I am writing an addin for word.

the addin should change a numbered list in word.

original list:

  1. foo
    1.1 foobar a
    1.2 foobar b
    1.3 foobar c
  2. bar
  3. bar X
  4. bar Y

The addin deletes 1.1 and 3.

The resulting list looks like:

  1. foo
    1.1 foobar b
    1.2 foobar c
  2. bar
  3. bar Y

The expected result should be:

  1. foo
    1.2 foobar b
    1.3 foobar c
  2. bar
  3. bar Y

How to achieve this?

Thanks in advance
tobi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

压抑⊿情绪 2025-01-05 02:36:29

您应该在删除条目后编辑编号列表模板并设置编号值。

比如说,在您删除例如中的 1.1 后,1.2 将变为 1.1,您必须将编号值设置回 1.2

这是如何设置和编辑编号列表模板的链接
http://www.codeproject.com/Articles/34801/Word-Style-Automation

检查 5. 将样式设置为段落部分

You should edit your list templates of Numbering and set the number value after deleting the entry.

Say after you delete 1.1 in your eg, 1.2 will become 1.1 here you have to set the numbering value back to 1.2

Here is the link for How to set and edit the list templates for Numbering
http://www.codeproject.com/Articles/34801/Word-Style-Automation

Check the section 5. Set Style to Paragraph

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文