我希望书中的问题部分被纳入目录,但不希望它在正文中作为一个章节进行编号。我该如何处理?
\dodumentclass{book}
\begin{document}
\maketitle
\tableofcontents
\listoffigures
\listoftables
\section{problem}
\end{document}
答案1
如果您的章节以“问题”部分结尾,最好定义一个宏以一致的方式完成工作:
\newcommand{\problems}{%
\section*{Problems}
\addcontentsline{toc}{section}{Problems}}
然后你只需说
\problems
<Here the list of problems>
关键是\addcontentsline
,它将条目添加到目录中。如果您使用标题,则可能需要添加一些内容来调整标题。