如何删除回忆录生成的双“内容”标题?

如何删除回忆录生成的双“内容”标题?

可能重复:
如何从 ToC 中删除 ToC 的自我引用?

我正在使用memoir文章设置。出于某种原因,我的目录有双重“目录”标题:

显示双标题的屏幕截图

为什么有两个?我怎样才能只得到一个?

以下是代码:

\documentclass[12pt, article]{memoir}
\usepackage{microtype}

\counterwithout{section}{chapter}
\setsecnumdepth{subsection}
\settocdepth{subsection}
\renewcommand*{\chaptitlefont}{\LARGE\centering}

\begin{document}
    \chapter*{My article}

    \begin{abstract}
        Lorem Ipsum\ldots
    \end{abstract}

    \pagestyle{plain}
    \tableofcontents
    \section{Introduction}
    \subsection{Subsection 1}
\end{document}

答案1

阅读第 9 章memoir手册。命令\tableofcontents\listoffigures\listoftables有无星号变体和有星号变体。无星号变体会将其自己的标题添加到目录中,而有星号变体的行为与标准文档类中的行为相同。

相关内容