LaTeX、overleaf、页码不一致

LaTeX、overleaf、页码不一致

我的目录的第二页的页码位于右上角,而其他地方的页码位于中间下方 - 它还以斜体重复了目录标题,因此看起来像目录中的另一行 - 我该如何解决这个问题,以便没有“目录”标题并且页码与所有其他页面相同? [![pdf 输出图片][1]][1]

%\usepackage{emptypage}
\usepackage{graphicx} % Required for inserting images
\usepackage{graphicx}
\usepackage{apacite} % apa citation
\usepackage{amssymb} %symbols
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage[nottoc,numbib]{tocbibind}

\usepackage{setspace}
%\singlespacing
%\onehalfspacing
\doublespacing


\bibliographystyle{apacite}
\RequirePackage{apacite}
\let\cite\shortcite
\let\citeA\shortciteA

\begin{document}    % BEGINING OF DOCUMENT

\pagenumbering{roman}

\input{title}
%\frontmatter %makes preface sections i, ii,... 

\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
summary

\chapter*{Acknowledgements}
\addcontentsline{toc}{chapter}{Acknowledgements}
saying thank you

\tableofcontents
%\mainmatter % makes chapter sections numbered (1, 2, 3)
\newpage

\listoftables
%\addcontentsline{toc}{chapter}{listofftables}
\newpage
\listoffigures
%\addcontentsline{toc}{chapter}{listofffigures}
\cleardoublepage
\pagenumbering{arabic}

\include{ch1}
\include{ch2}
\include{ch3}```


  [1]: https://i.stack.imgur.com/gXj0x.png

相关内容