如何在LaTex中添加罗马数字到附录页?

发布于 2024-08-17 02:30:26 字数 427 浏览 3 评论 0原文

有没有办法在文章末尾的页面上使用罗马数字 - 例如 \bibliography{...}、\listoffigures 和首字母缩略词列表?

目前它们显示没有任何数字:(

干杯,..

抱歉 - 我有点不正确,我不是在寻找更改页码的方法 - 我正在寻找更改实际操作编号的方法...

所以索引看起来像:

1 Section
2 Section
  2.1 SubSection
  2.2 SubSection
3 Section
References
Figures

但我正在寻找:

1 Section
2 Section
  2.1 SubSection
  2.2 SubSection
3 Section
I References
II Figures

is there a way to have roman numbers for the pages at the end of the article - like \bibliography{...}, \listoffigures and acronym-lists?

Currently they show up without any numbers :(

Cheers,..

Argh sorry - I was kind of incorrect I'm not looking for a way to change the page-numbers - I'm looking for a way to change the actual action-numbers...

So Index looks like:

1 Section
2 Section
  2.1 SubSection
  2.2 SubSection
3 Section
References
Figures

But I'm looking for:

1 Section
2 Section
  2.1 SubSection
  2.2 SubSection
3 Section
I References
II Figures

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

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

发布评论

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

评论(4

七堇年 2024-08-24 02:30:26

您没有说明您正在使用什么样式,但假设您想从 i 开始,您可以尝试

\pagestyle{plain}
\pagenumbering{roman}
\setcounter{page}{1}

之前您可能需要一个 \global \setcounter

You don't say what style you're using, but assuming you want to start over from i, you might try

\pagestyle{plain}
\pagenumbering{roman}
\setcounter{page}{1}

You may need a \global before the \setcounter.

ら栖息 2024-08-24 02:30:26

\appendix 之后添加 \renewcommand\thesection{\Roman{section}} 将更改附录中各部分的编号格式,并产生(已编辑的) 问题。

Adding \renewcommand\thesection{\Roman{section}} right after \appendix will change the numbering format of the sections in the appendix and yield the index shown in the (edited) question.

橘味果▽酱 2024-08-24 02:30:26

\pagenumbering{roman} 是一般如何在页面上显示罗马数字的方法。您需要在这些部分之前指定该样式。

\pagenumbering{roman} is how to have Roman numbers on pages in general. You would want to specify that style before those sections.

梦纸 2024-08-24 02:30:26

您可能还需要更改页面样式以显示数字 \pagestyle{plain},然后按照 @Michael 的建议

You might also need to change the page style to show numbers \pagestyle{plain}, and then follow @Michael's advice.

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