我有一个类似这样的代码:
\documentclass[a4paper,11pt]{report}
\usepackage[scaled]{helvet}
\renewcommand\familydefault{\sfdefault}
\usepackage[T1]{fontenc}
\begin{document}
\pagenumbering{roman}
\chapter*{Declaration}
\addcontentsline{toc}{chapter}{Declaration}
\chapter*{Preface}
\addcontentsline{toc}{chapter}{Preface}
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
\chapter*{Table of Contents}
\tableofcontents
\addcontentsline{toc}{chapter}{Table of Contents}
\clearpage
\pagenumbering{arabic}
\chapter{Introduction}
\chapter{Topics in Claims Reserving}
\section{section 1}
\subsection{section2}
\chapter{Conclusion}
\end{document}
但是目录不是从目录页开始的,而是从1页之后开始的。见附图:
我该如何修复它?
答案1
由于会自动创建包含适当格式标题的列表(在的\tableofcontents
情况下),因此您应该省略(或注释掉,如果您更喜欢)该 行,而是report
\chapter*
\chapter*{Table of Contents}
\renewcommand{\contentsname}{Table of Contents}
如果不需要做任何其他更改,这是更改基本文档类之一的目录的最简单、最直接的方法。