我是 Latex 新手,我正在使用 memoir 包生成目录。我需要删除下面目录图像中突出显示的部分。我只想要它并CHAPTER
想删除点和页码。
这是我的 .sty 文件中的代码 ---
%%%% Do the ToC
\let\oldtoc\tableofcontents
\renewcommand{\tableofcontents}{\clearpage\pagestyle{toc}\oldtoc}
\renewcommand{\contentsname}{TABLE OF CONTENTS}
\renewcommand{\listfigurename}{LIST OF FIGURES}
\renewcommand{\listtablename}{LIST OF TABLES}
\renewcommand*{\tocheadstart}{\vspace*{-\topfiddle}}
\renewcommand*{\aftertoctitle}{\thispagestyle{plain}%
\par\nobreak \mbox{}\hfill{\normalfont Page}\par\nobreak}
\renewcommand*{\cftchapterfont}{\normalfont}
\renewcommand*{\cftchapterpagefont}{\normalfont}
\renewcommand*{\cftchapterleader}{
% \cftchapterfont\cftdotfill{\cftchapterdotsep}}
\renewcommand*{\cftchapterdotsep}{\cftdotsep}
%\renewcommand*{\cftchaptername}{CHAPTER~}
%%% no extra space before the entry
\setlength{\cftbeforechapterskip}{0pt plus 0pt}
%% no extra 'chapter' space in LoF/LoT
\renewcommand*{\insertchapterspace}{}
你能帮我解决这个问题吗?
答案1
这是一个概念证明:
\documentclass{memoir}
\renewcommand\cftchapterdotsep{\cftdotsep}
\begin{document}
\frontmatter
\tableofcontents*
\listoftables
\listoffigures
\addtocontents{toc}{%
\unexpanded{\unexpanded{\renewcommand{\cftchapterdotsep}{\cftnodots}}}%
}
\mainmatter
\chapter{One}
\end{document}
\unexpanded
因为该参数被写了两次,所以需要用double来表示。