我如何才能使我的部分不被计算但在目录中列出?

我如何才能使我的部分不被计算但在目录中列出?

我被要求将我的IntroductionSummary部分不计入。但是,如果我使用\section*它,它不会出现在哪个中,Table of Contents这是不受欢迎的。

编辑:提出的解决方案不起作用: 在此处输入图片描述

我不知道其中的“人物列表”代表什么。

我已经像这样实现了它:

\tableofcontents
\addcontentsline{toc}{Úvod}{\vspace{10pt}}
\rule[0pt]{0mm}{10pt}

编译器还告诉我:

! Missing \endcsname inserted.

EDIT2:当然不行。我是个白痴。应该是:

\tableofcontents
\addcontentsline{toc}{section}{Úvod\vspace{0pt}}
\rule[0pt]{0mm}{10pt}

答案1

如果我理解正确的话,那么这就是你所需要的:

% not needed for lof b/ it produces its own heading, but for your summary:
%\section*{List of Figures}
% here just skip this and add your text:
\listoffigures
% this adds the line to your toc:
\addcontentsline{toc}{section}{List of Figures\vspace{0pt}}
% \rule[Offset]{width}{height} %  play around to meet your needs:
\rule[0pt]{0mm}{10pt}

祝你好运。(抱歉,我的代码没有正确显示)

相关内容