论文正文中应包含第一章而非第一章

论文正文中应包含第一章而非第一章

感谢@AlanMunn 对链接中提出的问题给出的回答。

章节号和章节标题在一行中

我想要的是:

第一章:章节名称/标题

并不是

第1章:章节名称/标题

我可以做到这一点

第1章:章节名称/标题

我需要将“1”更改为“ONE”,而不影响目录上的任何内容。

我使用了以下代码

\usepackage{titletoc,fmtcount,titlesec}
\titleformat{\chapter}[hang]
{\normalfont\large\bfseries}{\MakeUppercase\chaptertitlename\ \thechapter:}{1em}{}

\titlespacing*{\chapter}{0pt}{0pt}{0pt}% this reduces the space between the chapter title and section

请问我该怎么办?

答案1

由于您加载fmtcount,因此章节标题特别容易:

\usepackage{titletoc,fmtcount,titlesec} 
\titleformat{\chapter}[hang]{\normalfont\large\bfseries}{\MakeUppercase\chaptertitlename\ \NUMBERstring{chapter}:}{1em}{}

相关内容