我是 Latex 的新手。我的目标是在任何章节的标题中添加单词“Chapter”,在附录的标题中添加单词“Appendix”。我还想在目录中添加“Appendix”。但是,使用我大学的以下 MWE,我最终在目录中得到了“Appendix A”。我该如何删除目录中的字母“A”。
\documentclass[12]{thesis}
\RequirePackage{tocloft}
\RequirePackage{titlesec}
\usepackage[titletoc]{appendix}
\newcommand{\spacemultiplier}{1.5}
\renewcommand{\baselinestretch}{\spacemultiplier}\normalsize
\renewcommand{\frontmatter}{
%TABLE OF CONTENTS
\addcontentsline{toc}{chapter}{Contents}
{\renewcommand{\baselinestretch}{1}\normalsize
\tableofcontents
}
\newpage
\titleformat{\chapter}[display]{\renewcommand{\baselinestretch}{1.5}\LARGE\sc\fillast}{Chapter
\thechapter}{0pt}{}[\renewcommand{\baselinestretch}{\spacemultiplier}\normalsize]
\titlespacing{\chapter}{0pt}{1.4cm}{20pt}
\setcounter{chapter}{0}
}
% Appendix setup
\newcommand{\universityappendix}{
\appendix
\titleformat{\chapter}[display]{\renewcommand{\baselinestretch}{1.5}\normalsize
\LARGE\sc\fillast}{Appendix}{0pt}{}
\titlespacing{\chapter}{0pt}{-30pt}{20pt}
\renewcommand{\baselinestretch}{1.5}\normalsize
}
\begin{document}
\frontmatter
\chapter{blah blah}
This is a chapter
\universityappendix
\begin{appendices}
\chapter{blah blah}
this is appendix
\end{appendices}
\end{document}
谢谢