我的 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}