包含前几节的目录

包含前几节的目录

我在标题中更好地解释了我的意思。

我有目录,正常显示目录本身之后的所有章节和部分。

在此之前,我有摘要和致谢

我怎样才能将它们包含在目录中?

我所拥有的是

\usepackage[hyperindex]{hyperref}
\begin{document}
\include{Acknowledgements}
\clearemptydoublepage
\include{Abstract}
\clearemptydoublepage

\lhead[\fancyplain{}{\bfseries \thepage}]%
  {\fancyplain{}{\bfseries Table of contents}}
\rhead[\fancyplain{}{\bfseries Table of contents}]%
  {\fancyplain{}{\bfseries \thepage}}
\cfoot{}%
\tableofcontents
\clearemptydoublepage

谢谢

答案1

假设您的文档类别是“书籍”:

\documentclass[openany]{book}

\usepackage{lipsum}   % get some filler text
\usepackage{emptypage}% strip headers and numbers from otherwise empty pages

\begin{document}

\frontmatter          % switch off chapter numbering, use roman page nums

\chapter{Abstract} 

\lipsum[1]

\chapter{Acknowledgements}

\lipsum[2]


\tableofcontents

\mainmatter  % switch on chapter numbering, use arabic page numbers

\chapter{Another day in paradise}

\lipsum[3]

\backmatter   % for index, bibliography, appendix

\end{document}

在此处输入图片描述

相关内容