答案1
这可以帮助你更接近你的要求
\documentclass{book}
\usepackage[pass]{geometry}
\usepackage{lipsum }
\author{names}
\title{Project Title}
\date{text}
\makeatletter
\newcommand{\printcover}{%
\begin{titlepage}
\begin{center}
\normalsize
Electronics and Computer Science \\Faculty of Engineering and Physical Sciences\\ University of Southampton
\vfill
\@author
\vfill
\@date
\vfill
{\bfseries\@title}
\vfill
Project Supervisor: Supervisor
\vspace*{2em}
Second Examiner: 2nd Examiner
\vfill
A project progress report submitted for the award of
Degree Title
\end{center}
\end{titlepage}
}
\makeatother
\begin{document}
% \frontmatter
\printcover
% \mainmatter
\chapter{Introduction}
\lipsum[1-4]
\end{document}