我正在使用带有章节的回忆录文档类。但是,我想删除每个章节的章节标题,这样它就不会显示“第 1 章”然后在下面显示“简介”。我只想让它显示“简介”。但是,当我使用 * 删除章节标题时,我无法在目录中调用它们。所以,我想知道如何更改章节标题,或者是否有其他方法可以解决这个问题?
\documentclass[a4paper,oneside, 11pt, openany]{memoir}
\setcounter{secnumdepth}{2}
\tableofcontents
\mainmatter
\chapter{Introduction}
\input{chapters/intro}
\chapter{Methods}
\input{chapters/chapter02}
答案1
在回忆录中,frontmatter 禁用了秒编号。\mainmatter
重新启用它,但 frontmatter 仍然不是存储当前值并恢复。而是恢复为用户定义的值。
因此,在回忆录中,正确的方法是:
\setsecnumdepth{subsubsection}
\setmaxsecnumdepth{subsubsection} % mainmatter restore to this
有一个类似的命令 ( \settocdepth
) 可以设置目录的深度。它的最大版本几乎不需要(我从未使用过它)