我有下一个问题:
我正在做毕业设计,学校强迫我用一个特殊的 pdf 来制作章节。问题是,我添加了这个 pdf,它显示正常,但我仍然有该章节出现的另一页\chapter{Chapter_1}
。现在我想要删除这个页面,但让它出现在目录中。
我不知道是否可以只删除命令\chapter
并以某种方式添加到 ToC 或以任何其他方式完成。如果这个问题已经完成,我很抱歉,但我找不到它。
答案1
作为乔恩说了:你可以使用\addcontentsline
:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[frenchb]{babel}
\usepackage{microtype}
\begin{document}
\tableofcontents
\chapter{TEST1}
\section{sec11}
\section{sec12}
\section{sec13}
\addtocounter{chapter}{1}
\addcontentsline{toc}{chapter}{\thechapter\hspace{2ex}TEST2}
\chapter{TEST3}
\section{sec31}
\section{sec32}
\section{sec33}
\end{document}
使用2ex
不是最好的方法;我认为您必须使用titlesec
包来确保它是正确的间距。