章番号の文字列をすべて大文字にすることはできません

章番号の文字列をすべて大文字にすることはできません

私の MWE は章番号として「One」を生成します。この「One」を「ONE」にしたいです。考えられる限りのことをすべて試してみましたが\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

フレーム数パッケージには、 というマクロが用意されています。すべて大文字の文字列「ONE」を生成するには\NUMBERstring、 の代わりにこのマクロを使用する必要があります。\Numberstring


ここに画像の説明を入力してください

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

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

関連情報