我使用以下自定义命令创建没有标题的章节。但它会在目录中创建一个编号条目。
\makeatletter
\newcommand{\chapternoheading}[1]{
\begingroup
\let\@makechapterhead\@gobble
\chapter{#1}
\endgroup
}
\makeatother
我该如何修改上述内容,以便目录中也不会产生任何条目?(即没有标题且目录中没有条目的章节)
我使用以下自定义命令创建没有标题的章节。但它会在目录中创建一个编号条目。
\makeatletter
\newcommand{\chapternoheading}[1]{
\begingroup
\let\@makechapterhead\@gobble
\chapter{#1}
\endgroup
}
\makeatother
我该如何修改上述内容,以便目录中也不会产生任何条目?(即没有标题且目录中没有条目的章节)