将“第 3 章”更改为“我的第 3 章”,其余章节不变

将“第 3 章”更改为“我的第 3 章”,其余章节不变

我有以下简单的文档:

\documentclass[10pt,a4paper]{report}
\begin{document}
\chapter{Title of Chapter First}
This is my chapter first.
\chapter{Title of Chapter Two}  
This is my chapter two.
\chapter{Title of Chapter Three}    
This is my chapter three.
\end{document}

在正常模式下,第 3 章将打印如下:

Chapter 3
Title of chapter three

现在,我希望看到第 3 章采用以下格式

My Chapter III
Title of chapter three

代替

Chapter 3
Title of chapter three

其余章节的格式保持不变。换句话说,只有第 3 章的“章节”和“3”字样分别变成了“我的章节”和罗马数字“III”。有没有合适的方法来实现这些功能?

答案1

您可以重新定义\chaptername和计数器的My Chapter样式。括号确保更改仅限于本章标题。如果您使用它们:运行标题和目录将反映这些更改,这可能是也可能不是您想要的。chapter\Roman

{\renewcommand\chaptername{My Chapter}%
 \renewcommand\thechapter{\Roman{chapter}}%
 \chapter{Title of Chapter Three}%
}

答案2

与 gernot 相同,但如果有人想使用 babel,例如法语,您可以使用:

\addto\captionsfrench{\renewcommand{\chaptername}{My Chapter}}

而是。替换法语用你的语言。

相关内容