页码和标题问题

页码和标题问题

我在页码和标题方面遇到了一些问题。我 \pagenumbering{arabic}在后面插入了命令\listoffigures命令,我原本的意图是从简介页开始使用阿拉伯语页码。但是在这里,图表列表页后面有一些空白。所以页码从该页开始。我该如何解决这个问题?

另一个问题是标题。文章的标题在目录页本身就可见。我更喜欢在简介页的页脚中看到它。我该如何实现这一点?

我的main.tex页面显示如下

\documentclass[12pt,twoside]{report}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage[compact]{titlesec}
\titlespacing{\section}{0pt}{0pt}{0pt}
\AtBeginDocument{
\setlength\abovedisplayskip{0pt}
\setlength\belowdisplayskip{0pt}}
\usepackage[rawfloats=true]{floatrow} 
\restylefloat{figure}
\usepackage{fancyhdr}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{minted}
\usepackage[T1]{fontenc}
\usepackage{lmodern}

\usepackage{array}
\usepackage{multirow}
\usepackage{tabu}


\pagestyle{fancy}
\fancyhf{}

\fancyhead[RO,LE]{\leftmark}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[CO,CE]{The title}

\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\usepackage[sorting=none]{biblatex}
\addbibresource{references.bib}

\title{the title}
\author{mark hedgen}
\date{May 2015}

\begin{document}

\input{titlepage}

\pagenumbering{roman}

\chapter*{Abstract}
\tableofcontents
\listoffigures

\pagenumbering{arabic}

\chapter{Introduction}
\input{chapters/Introduction}
\chapter{Research Methodology}
\input{chapters/ResearchMethodology}
\chapter{Literature Review and Theoretical considerations}
\input{chapters/RelatedWorks}
\chapter{General Background}
\input{chapters/Background}
\chapter{Pre Study}
\input{chapters/Casestudy}
\chapter{Requirements Specification}
\input{chapters/RequirementSpecification}
\chapter{Implementation}
\input{chapters/Implementation}
\chapter{Evaluation}
\input{chapters/Evaluation}
\chapter{Discussion}
\input{chapters/GeneralDiscussion}
\chapter{Conclusion}
\input{chapters/Conclusion}
\appendix
\chapter{Appendices}
\input{chapters/appendix}
\printbibliography
\end{document} 

相关内容