调整目录第二页的页眉

调整目录第二页的页眉

我已经定义了目录、方程式列表、图表列表和表格列表。我的表格列表现在位于目录的第二页,但随后出现了一个标题,我想把它去掉。但我似乎找不到解决方案。

我尝试调整文档中的 TOC/LOF/LOT 页面样式以及页眉本身。有人知道如何修复这个问题吗?我用红色圈出了我想删除的内容。 在此处输入图片描述

\documentclass[10pt,a4paper]{report}    
\usepackage{titleps}% http://ctan.org/pkg/{titleps,lipsum}
    \newpagestyle{nice}{
      \setheadrule{.4pt}% Header rule
      \sethead[Thesis]% even left
        []% even centre
        [\thechapter. \chaptertitle]% even right
        {\thechapter. \chaptertitle}% odd left
        {}% odd centre
        {Thesis}% odd right
      
      \setfoot[][\thepage][]{}{\thepage}{}
    }
    \newpagestyle{introduction}{
      \setheadrule{.0pt}% Header rule
      \sethead[]% even left
        []% even centre
        []% even right
        {}% odd left
        {}% odd centre
        {}% odd right
      
      \setfoot[][\thepage][]{}{\thepage}{}
    }
  
    \renewcommand*\descriptionlabel[1]{\hspace\leftmargin$#1$}
    
    \definecolor{gray75}{gray}{0.75}
    \newcommand{\hsp}{\hspace{20pt}}
    % \titleformat{\chapter}[hang]{\vspace{-2cm}\huge\bfseries}{\vspace{-1.250in}\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\huge\bfseries}[\vspace{-1.0cm}]
    \titleformat{\chapter}[hang]{\vspace{-2cm}\huge}{\vspace{-1.250in}\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\huge}[\vspace{-1.0cm}]
    \titleformat*{\section}{\normalfont \Large}
    \titleformat*{\subsection}{\slshape \large}
    
    \usepackage{tocloft}
    \newcommand{\listequationsname}{\thispagestyle{introduction}\normalfont{\huge{List of Equations}}}
    \newlistof{myequations}{equ}{\listequationsname}
    \newcommand{\myequations}[1]{%
    \addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}}
    \setlength{\cftmyequationsnumwidth}{2.3em}% Width of equation number in List of Equations
    \setlength{\cftmyequationsindent}{1.5em}% indent of equation number in List of Equations
    
    \renewcommand{\cfttoctitlefont}{\newpage\huge} %adjusting size TOC
    \renewcommand{\cftloftitlefont}{\huge\pagestyle{plain}} %adjusting size lof
    \renewcommand{\cftlottitlefont}{\huge\pagestyle{plain}} %adjusting size lot
    
    
    
    \makeglossaries
    \input{glossaries}
    \begin{document}
        \input{Frontpage/Frontpage_new}
        \input{Frontpage/Preface}
        \input{Frontpage/Summary}
        \setcounter{tocdepth}{1}
        
        \tableofcontents
        \addtocontents{toc}{~\hfill\textbf{Page}\par}
        \listofmyequations
        \listoffigures
        \listoftables

    \pagestyle{nice}
    \input{Chapters/01Introduction}
    \input{Chapters/02TheoreticalFramwork}
    \input{Chapters/03Methodology}
    \input{Chapters/04Results}
    \input{Chapters/05Conclusion}
    \input{Chapters/06Recommendation}
    
    
    \printbibliography[heading=bibintoc]
    \printglossaries

\end{document} 

相关内容