我已经使用过此代码我如何将摘要和致谢页添加到目录中添加摘要和致谢。但是,我无法将章节标题与其他章节标题的现有边距格式相匹配。
我的代码在标题页之后和介绍章节之前给出如下;
\pagenumbering{roman}
%\shipout\null
%\stepcounter{page}
\cleardoublepage
\chapter*{Acknowledgement}
\addcontentsline{toc}{chapter}{\numberline{}Acknowledgement}%
\lipsum
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{\numberline{}Abstract}%
\lipsum
%----------------------------------------------------------------------------
\tableofcontents
\listoffigures
\listoftables
请告诉我如何更正目录中的边距。提前致谢!
答案1
我使用该包添加了更多虚拟内容。如果删除最后一个参数duckuments
,则可以获得正确的对齐方式。\numberline{}
\addcontentsline
\documentclass[]{report}
\usepackage{duckuments}
\begin{document}
\pagenumbering{roman}
\cleardoublepage
\chapter*{Acknowledgement}
\addcontentsline{toc}{chapter}{Acknowledgement}%
\blindduck
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}%
\blindduck
\duckument
%----------------------------------------------------------------------------
\tableofcontents
\listoffigures
\listoftables
\end{document}