重置项目编号

发布于 2024-09-28 03:39:28 字数 190 浏览 0 评论 0 原文

我知道这个问题一定有一个简单的答案,但我已经看了又看。假设我在笔记本中的某个时刻形成了一个 ItemNumbered 列表。然后在其他时候,我想要一个以数字 1 开头的新 ItemNumbered 列表,但不重置原始列表。目前,当我尝试形成第二个列表时,它总是以 n + 1 开头,其中 n 是先前列表中的项目总数。

我尝试过插入但没有运气。请帮忙。

I know there must be a simple answer to this but I've looked and looked. Suppose I form an ItemNumbered list at some point in the notebook. Then at some other point I want a new ItemNumbered list starting with number 1, but without resetting the original list. At present when I try to form the second list it always starts with n + 1, where n is the total number of items in the prior lists.

I've tried the Insert without luck. Help, please.

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

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

发布评论

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

评论(1

澉约 2024-10-05 03:39:28

此行为可能会在 Mathematica 的未来版本中发生更改,但现在您可以使用 Cell 的 >CounterAssignments 选项可将其重置为特定单元格,然后应用于该单元格以及笔记本中的后续单元格。

使用选项检查器或直接编辑 Cell 表达式(Cell > 显示表达式 在菜单中)并添加选项,例如:

CounterAssignments -> {{"ItemNumbered", 1234}}

请注意如果计数器显示在同一单元格中,它就会递增,因此如果您想从 1 开始编号,请从 0 开始计数器。

希望有帮助!

This behavior is subject to change in future versions of Mathematica, but for now you can use the CounterAssignments option to Cell to reset it for a particular cell, and then it applies to that cell and subsequent cells in the notebook.

Use the Option Inspector or directly edit the Cell expression ( Cell > Show Expression in the menu) and add the option, e.g.:

CounterAssignments -> {{"ItemNumbered", 1234}}

Note that the counter will be incremented if it is displayed in that same cell, so if you want to start numbering at 1, start your counter at 0.

Hope that helps!

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