论文文档中 \def\uppercase{} 的问题

论文文档中 \def\uppercase{} 的问题

我正在写论文并面临以下问题。

当我删除\def\uppercase{}(见以下文件后\begin{document}。我的所有章节的标题,标题“目录”,标题“参考”在论文中都转换为首都(例如,使用 REFERENCES 而不是 References,使用 INTRODUCTION 而不是 Introduction)。

[编辑:这个问题是列出包错误,其中\def\uppercase{}建议的解决方案是删除。

我该如何修复此问题?

\documentclass[twoside,12pt]{Classes/aesm_edspia}

\begin{document}
\def\uppercase{} 

\renewcommand\figurename{\small\textbf{Figure}} 
\addtocounter{page}{-1}
\makethese 
\onehalfspacing
\newpage\thispagestyle{empty}\addtocounter{page}{-5}


\frontmatter
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{Acknowledgments}

\fancyfoot[RO]{\thepage}
\fancyfoot[LE]{\thepage}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}



\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{Table of Contents}

\fancyfoot[RO]{\thepage}
\fancyfoot[LE]{\thepage}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}

\renewcommand\contentsname{Table of Contents}
\renewcommand\listfigurename{List of Figures}
\renewcommand\listtablename{List of Tables}
\renewcommand\bibname{Bibliography}
\renewcommand\indexname{Index}
\renewcommand\figurename{Figure}
\renewcommand\tablename{Table}
\renewcommand\partname{Part}
\renewcommand\chaptername{Chapter}
\renewcommand\appendixname{Appendix}



\input{Abstract/Abstract}
\clearpage{\pagestyle{empty}\cleardoublepage}
\include{Abstract/LongAbstract}
\clearpage{\pagestyle{empty}\cleardoublepage}
\include{Abstract/remerciement}

\clearpage{\pagestyle{empty}\cleardoublepage}
\tableofcontents
\clearpage{\pagestyle{empty}\cleardoublepage}

\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{List of Figures}
\fancyfoot[RO]{\thepage}
\fancyfoot[LE]{\thepage}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}

\listoffigures
\listoftables 
\clearpage{\pagestyle{empty}\cleardoublepage}    

\mainmatter    
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{Introduction}
\fancyfoot[RO]{\thepage}
\fancyfoot[LE]{\thepage}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt} 

\include{Introduction/introduction}
...

\onehalfspacing

\end{document}

答案1

在 aesm_despia 中,您有以下第 117 行:

\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{\chaptername~\thechapter. #1 }}{}}

如果你确实需要这个类,但需要修改标题的外观,请在主文件中添加以下行(尽早添加)

\renewcommand{\chaptermark}[1]{\markboth{{\chaptername~\thechapter. #1 }}{}}

相关内容