Невозможно сделать строку с номером главы заглавной.

Невозможно сделать строку с номером главы заглавной.

Мой 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

Thefmtcountпакет предоставляет макрос с именем \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}

Связанный контент