章节编号字符串不能全部大写

章节编号字符串不能全部大写

我的 MWE 为章节号生成“一”。我希望“一”是“一”。我尝试了所有我能想到的方法\renewcommand{\thechapter}{\MakeUppercase{\Numberstring{chapter}}}{\MakeUppercase{\thechapter}}但都不起作用。

\documentclass[12pt]{memoir}
\usepackage[explicit]{titlesec}

\titleformat{\chapter}[display]
    {\huge\filcenter}
    {\thechapter}
    {1em}
    {\Huge #1}
\titleformat{\subsection}[display]{}
    {\thesubsubsection}
    {}
    {#1}

\let\ordinal\relax
\usepackage{fmtcount}
\renewcommand{\thechapter}{\Numberstring{chapter}}

\begin{document}
\chapter{The First Chapter}
This is some text in the first chapter.
\end{document}

在此处输入图片描述

答案1

计数包提供了一个名为的宏\NUMBERstring。您应该使用此宏而不是\Numberstring来生成全大写的字符串“ONE”。


在此处输入图片描述

\documentclass[12pt]{memoir}
\let\ordinal\relax
\usepackage{fmtcount}

\begin{document}
\setcounter{chapter}{1}
\arabic{chapter} \numberstring{chapter} \Numberstring{chapter} \NUMBERstring{chapter}
\end{document}

相关内容