目录中没有页码的章节

目录中没有页码的章节

我正在使用 sharelatex 工作,我的论文要求在目录中添加摘要,该摘要是未编号的章节,没有页码。现在,我修复了无编号章节的问题,但 latex 没有文档说明目录中的单个章节不包括页码。这可能吗?

答案1

为了避免目录中的页码,您可以使用以下命令手动添加目录条目\addtocontents

\documentclass{book}
\newcommand\fakechapter[2][]{%
  \ifx&#1&%
    \fakechapter[#2]{#2}%
  \else
    \chapter*{#2}%
    \chaptermark{#1}%
    \addtocontents{toc}{\protect\contentsline{chapter}{#1}{}}%
  \fi
}
\begin{document}
\tableofcontents
\fakechapter{Abc}
\chapter{Def}
\fakechapter[Something]{Ghi}
\end{document}

在此处输入图片描述

答案2

如果您正在使用memoir类(适用于bookreportarticle类),您可以这样做:

\documentclass[...]{memoir}
\begin{document}
\frontmatter
\tableofcontents*
\mainmatter
\chapter*{Summary} % No ToC entry
\addtocontents{toc}{\cftpagenumbersoff{chapter}} % no chapter page numbers
\addcontentsline{toc}{chapter}{Summary} % put Summary chapter title in ToC
\addtocontents{toc}{\cftpagenumberson{chapter}} % chapter page numbers printed - edited brackets    
Summary of the thesis.
\chapter{One}
Your thesis ...
\end{document}

相关内容