抱歉,我对乳胶还很陌生,还有很多东西需要学习。
我正在使用report
文档类和openright
。这就是我的“结构”的样子:
\tableofcontents
\setstretch{1.5}
\include{Introduction}
\include{Chap1}
\include{Chap2}
\include{Chap3}
\include{Conclusions}
和介绍和结论首先chapter*{}
将它们作为未编号的章节(当然,它们都是单个 .tex 文件)。
我如何让它们不编号,但也出现在目录中正确的页码? 我发现的唯一方法是\addcontentsline
,但是目录中的行报告了错误的页码。
提前感谢大家的帮助!!
编辑:忘了说我指定了我正在使用,openright
因为这可能是错误编号的问题。
答案1
你必须把\addcontentsline
后命令\chapter*
。
% tocincprob.tex SE 590518
\documentclass[openright]{report}
\begin{document}
\tableofcontents
%\setstretch{1.5} %%% where does this come from?
\chapter*{Intooduction}
\addcontentsline{toc}{chapter}{Introduction}
\chapter{Chap1}
\chapter{Chap2}
\chapter*{Conclusions}
\addcontentsline{toc}{chapter}{Conclusions}
\end{document}