我被要求不計算我的Introduction
和Summary
部分。但是,如果我使用\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}
祝你好運。 (抱歉編輯,但我的程式碼沒有正確顯示)