需要将部分更改为罗马字母,但保留阿拉伯语 for subsection 和 subsubsection

发布于 2024-10-31 13:55:49 字数 353 浏览 0 评论 0原文

我需要将我的部分编号从阿拉伯语更改为罗马语,甜菜在小节和子小节中保留阿拉伯编号。例如:

I.第

1.1 节。 第 1.1.1款

。 小节

第二 。第

2.1 小节

...

所以我知道,对于各节,我可以执行“\renewcommand \thesection{\roman{section}}”,但此命令也会更改小节和子小节,如下所示:

I. 第

I.1 节。 第 I.1.1小节

。 小节

第二

第II.1 节。小节

...

所以我需要保留罗马编号中的小节和小节。

I need to change my section numbering from Arabic, to Roman, beet keep the Arabic numbering in subsections and subsubsections. For example:

I. Section

1.1. Subsection

1.1.1. Subsubsection

II. Section

2.1 Subsection

...

So I know that with sections i can do "\renewcommand \thesection{\roman{section}}", but this command changes also subsections and subsubsections, like that:

I. Section

I.1. Subsection

I.1.1. Subsubsection

II Section

II.1. Subsection

...

So I need to keep subsections ans subsubsections from Roman numbering.

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

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

发布评论

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

评论(1

各自安好 2024-11-07 13:55:49

这两行对我来说是这样的:

\renewcommand \thesection{\roman{section}}
\renewcommand \thesubsection{\arabic{section}.\arabic{subsection}}

我认为 Subsubsection 也可以工作,因为它从 subsection 中获取其节号。

These two lines did it for me:

\renewcommand \thesection{\roman{section}}
\renewcommand \thesubsection{\arabic{section}.\arabic{subsection}}

Subsubsection also works, I assume because it takes its section number from subsection.

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