如何从 ToC、LoT、LoF 第一页删除页码?

如何从 ToC、LoT、LoF 第一页删除页码?

我对目录、表格列表和图表列表有疑问。我希望 ToC、LoT 和 LoF 的第一页上不要有罗马页码。这三者都将长达几页,并且页码应该从第二页开始出现。

\documentclass[12pt,a4paper,oneside]{Thesis}

\usepackage{graphicx}
\usepackage{caption}
\usepackage{amsmath}
\usepackage{calligra}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{tabu}
\usepackage{lineno,hyperref}
\usepackage{algorithmicx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{multirow}
\usepackage{amssymb}
\usepackage{array}
\usepackage{float}
\usepackage{url}
\usepackage[font=small,labelfont=bf,justification=justified,format=plain]{caption}
\usepackage{enumitem}
\usepackage{booktabs}  
\usepackage{siunitx}
\usepackage{subfig}
\usepackage{tikz}
\usetikzlibrary{arrows,automata,backgrounds,calc,fit,positioning,shapes.geometric}
\usepackage[resetlabels]{multibib}
\setbiblabelwidth{1000}
\newcites{lop}{List of Publications}
\hyphenation{arti-ficial draw-back para-meters relati-onships rev-erse}
\graphicspath{{Pictures/}}
\hypersetup{urlcolor=black,colorlinks=false} 

\thesistitle{MY TITLE}

\degree{DOCTOR OF PHILOSOPHY (TECHNOLOGY)}

\degreemajor{MY SUBJECT}

\authors{MY NAME}

\university{MY UNIVERSITY}

\department{MY DEPARTMENT}

\semsub{2019}

\title{\ttitle} 

\begin{document}

\frontmatter 

\setstretch{1.6} 

\fancyhead{}

\rhead{\thepage}

\lhead{}

\pagestyle{fancy}

\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}

\hypersetup{pdftitle={\ttitle}}
\hypersetup{pdfsubject=\subjectname}
\hypersetup{pdfauthor=\authornames}
\hypersetup{pdfkeywords=\keywordnames}

\maketitle

\clearpage

\setstretch{1.3} 

\pagestyle{empty}

\dedicatory{
    \Huge{
        \textit{
            \calligra
            Dedicated to my loving parents
        }
    }
}

%\setstretch{1.3}

\acknowledgements{\addtocontents{toc}{}

Acknowledgements...

}

\clearpage

\addtotoc{Abstract}

\pagestyle{fancy}

\thispagestyle{empty}

\abstract{
    \addtocontents{toc}{}

    Abstract...

}

\clearpage

{\protect\thispagestyle{empty}}

\lhead{\emph{Contents}}

\tableofcontents

\pagestyle{fancy}

\lhead{\emph{List of Figures}}

\listoffigures 


\lhead{\emph{List of Tables}}

\listoftables

\clearpage

\setstretch{1.5}

\lhead{\emph{Abbreviations}}

\listofsymbols{ll}
{
    \textbf{FN} & \textbf{F}alse \textbf{N}egative \\
    \textbf{FP} & \textbf{F}alse \textbf{P}ositive \\
    \textbf{GNW} & \textbf{G}ene\textbf{N}et\textbf{W}eaver \\
    \textbf{GRN} & \textbf{G}ene \textbf{R}egulatory \textbf{N}etworks \\
    \textbf{HS} & \textbf{H}alf-\textbf{S}ystem \\
    \textbf{RNN} & \textbf{R}ecurrent Neural Network \\
    \textbf{SS} & \textbf{S}-\textbf{S}ystem \\
    \textbf{TN} & \textbf{T}rue \textbf{N}egative \\
    \textbf{TP} & \textbf{T}rue \textbf{P}ositive
}

\mainmatter

\setlength{\parindent}{30pt}

\pagestyle{fancy}

\input{Chapters/Chapter1}
\input{Chapters/Chapter2} 
\input{Chapters/Chapter3} 
\input{Chapters/Chapter4} 
\input{Chapters/Chapter5}
\input{Chapters/Chapter6}
\input{Chapters/Chapter7}

\addtocontents{toc}{\vspace{3em}}

\backmatter

\nocite{*}

\label{bib}
\thispagestyle{empty}

\lhead{\emph{Bibliography}}

\setstretch{1.3}

\bibliographystyle{IEEEtran}

\bibliography{ieeeref}

\clearpage

\label{lop}

\lhead{\emph{List of Publications}}
\setstretch{1.3}

\bibliographystylelop{IEEEtran}

\bibliographylop{lop}

\nocitelop{*}

\end{document}

答案1

Bernard 在以下帖子中非常优雅地解决了我的问题:如何从前言中删除页眉

相关内容