“缺少数字,视为零。”在乳胶中

发布于 2024-08-31 20:03:19 字数 1459 浏览 3 评论 0原文

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

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

发布评论

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

评论(2

十年九夏 2024-09-07 20:03:19

我建议使用该片段

\makeatletter
\newcommand{\rmnum}[1]{\romannumeral #1}
\newcommand{\Rmnum}[1]{\expandafter\@slowromancap\romannumeral #1@}
\makeatother

现在你可以称呼:

\Rmnum{2} % II
\rmnum{2} % ii

I would suggest to use that snippet:

\makeatletter
\newcommand{\rmnum}[1]{\romannumeral #1}
\newcommand{\Rmnum}[1]{\expandafter\@slowromancap\romannumeral #1@}
\makeatother

now you can call:

\Rmnum{2} % II
\rmnum{2} % ii
腻橙味 2024-09-07 20:03:19

我认为你的意思是 \Roman 而不是 \Rome。无论如何, \Roman 将计数器的值打印为罗马数字,因此您不能将其与“2”一起使用。

简短的回答 - 使用 \romannumeral 2

长答案 - 按照此处所述定义命令。

I think you mean \Roman not \Rome. Anyway, \Roman prints the value of a counter as a roman numeral, so you can't use it with "2".

Short answer - use \romannumeral 2.

Long answer - define commands as described here.

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