如何使用 \section*{something} 而不将其从目录中删除?

如何使用 \section*{something} 而不将其从目录中删除?

我正在尝试将摘要和致谢页插入到我的报告中。我想隐藏(前面的数字):

  1. 抽象的
  2. 致谢

部分\section*。但这样做也会将其从目录中删除。有没有办法在目录中保留条目,同时防止这种情况发生?

答案1

使用

\section*{Section heading}
\addcontentsline{toc}{section}{Section heading}

如果你正在使用report文档类,那么你应该使用

\chapter*{Chapter heading}
\addcontentsline{toc}{chapter}{Chapter heading}

答案2

当您使用自己的部分名称时,可能会失去计数。

这是一个选项:

\section*{Your section name}
\addcontentsline{toc}{section}{Your section name}\stepcounter{section}

之后只需添加一个计数器。

相关内容