如何将 \Roman 应用于计数器中的数学表达式?

如何将 \Roman 应用于计数器中的数学表达式?

假设我想产生与如何在章节中切换数字?

但用罗马数字。所以我会

  • 第一章
  • 第二章
  • 第三章
  • 第六章

而不是该帖子中的阿拉伯语版本。

在那篇文章中,第 3+4 章是由以下代码生成的:

\def\thechapter{\arabic{chapter}+\the\numexpr\value{chapter}+1\relax}

我想知道是否有类似的方法来制作第三章和第四章。如果我这样做

\def\thechapter{\Roman{chapter}+\Roman{\the\numexpr\value{chapter}+1\relax}}

它将返回一个错误。(如果我删除 ,情况也是一样\the。)

答案1

这个答案实际上回答了错误发生的原因以及如何修复该错误的具体问题。它没有解决链接问题中回答的问题。请参阅 egreg 的答案以了解此类解决方案,或将此处的解决方案用作链接问题中给出的解决方案的一部分。

\Roman命令(和类似的命令)期望一个计数器作为参数,而不是一个数字,但是您\numexpr得到的结果是数字,因此您收到错误:

Missing number, treated as zero.
<to be read again> 
\c@4

因此,如果您想使用相同的方法简单地执行此操作,则需要使用\@Roman需要数字的内部命令。

\documentclass{book}

\makeatletter
\def\thechapter{\Roman{chapter}+\@Roman{\numexpr\value{chapter}+1\relax}}
\makeatother
\begin{document}
\setcounter{chapter}{2}
\chapter{A chapter}
\end{document}

如果您不想使用低级命令,\@Roman您可以加载calc包,并使用临时计数器来实现相同的效果:

\documentclass{book}
\newcounter{tmpchap}
\usepackage{calc}
\renewcommand\thechapter{\protect\setcounter{tmpchap}{\value{chapter}+1}\Roman{chapter}+\Roman{tmpchap}}
\begin{document}
\setcounter{chapter}{2}
\chapter{A chapter}
\end{document}

代码输出

答案2

Alan Munn 的回答很好,但还有更好的方法。

\ExplSyntaxOn
\NewDocumentCommand{\doublechapter}{O{#2}m}
 {
  \renewcommand{\thechapter}
   {
    \int_to_Roman:n {\value{chapter}}+\int_to_Roman:n {\value{chapter}+1}
   }
   \chapter[#1]{#2}
   \stepcounter{chapter}
   \renewcommand{\thechapter}{\Roman{chapter}}
 }
\ExplSyntaxOff

仍然可以做到\doublechapter[Short]{Long}

完整示例

我使用它openany只是为了避免空白页并geometry制作较小的图片。

\documentclass[openany]{book}
\usepackage[a6paper]{geometry}

\renewcommand{\thechapter}{\Roman{chapter}}

\ExplSyntaxOn
\NewDocumentCommand{\doublechapter}{O{#2}m}
 {
  \renewcommand{\thechapter}
   {
    \int_to_Roman:n {\value{chapter}}+\int_to_Roman:n {\value{chapter}+1}
   }
   \chapter[#1]{#2}
   \stepcounter{chapter}
   \renewcommand{\thechapter}{\Roman{chapter}}
 }
\ExplSyntaxOff

\begin{document}

\chapter{Title one}

\chapter{Title two}

\doublechapter{Title for the double chapter}\label{doublechapter}

\chapter{Title five}

\ref{doublechapter}

\end{document}

在此处输入图片描述

答案3

看完之后这个答案,我自己找到了解决办法。

\renewcommand{\thechapter}{\Roman(chapter}+\uppercase\expandafter{\romannumeral\numexpr\value{chapter}+1\relax\relax}}

根据我的理解来解释一下,chapter柜台(作为参数类型),并将\Roman计数器转换为字符串。另一方面,\numexpr ... \relax数字,所以我们需要\romannumeral...\relax将其转换为字符串。这会产生小写的罗马数字,应用后\uppercase\expandafter{ ... }会将其转换为大写。

相关内容