目录中的内容和致谢

目录中的内容和致谢

我想让目录和致谢像下图一样出现在目录中。你能告诉我怎么做吗?

多谢

在此处输入图片描述

这是我的 MWE:

\documentclass[12pt,twoside]{report}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[RE]{\slshape\nouppercase{\leftmark}}
\fancyhead[LO]{\slshape\nouppercase{\rightmark}}
\fancyhead[RO,LE]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{lipsum}
\graphicspath{{Images/}}
\begin{document}
\pagestyle{headings}
\chapter*{Acknowledgements}
\thispagestyle{empty}
\pagenumbering{arabic}
\tableofcontents
\addcontentsline{toc}{chapter}{\listfigurename}\addcontentsline{toc}{chapter}{\listtablename}
\pagenumbering{roman}
\listoffigures
\listoftables
\clearpage
\pagenumbering{arabic}
\chapter{Introduction}
Some text
\end{document}

答案1

对于目录,使用以下行

\cleardoublepage
\addcontentsline{toc}{section}{\numberline{}Contents}
\tableofcontents

如果您的文档类从下一页开始章节(如文章和报告类),而不是从下一个奇数页开始(如带有选项的书籍类或报告类twoside),请替换\cleardoublepage\clearpage

对于致谢,请使用

\chapter*{Remerciements (Acknowledgements)}
\addcontentsline{toc}{section}{\numberline{}Remerciements (Acknowledgements)}

相关内容