Introduction
およびセクションをカウントしないように求められましたSummary
。ただし、 を使用すると には\section*
表示されず、Table of Contents
これは望ましくありません。
そこにある「図表一覧」が何を表しているのか全く分かりません。
私はこれを次のように実装しました:
\tableofcontents
\addcontentsline{toc}{Úvod}{\vspace{10pt}}
\rule[0pt]{0mm}{10pt}
また、コンパイラは次のように言っています:
! Missing \endcsname inserted.
編集2: もちろん機能しません。私はバカです。正しくは:
\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}
頑張ってください。(編集して申し訳ありませんが、コードが正しく表示されませんでした)