封面格式

封面格式

有人能帮我制作如图所示的封面吗?我无法制作日期之后的部分。谢谢!

\title{ \normalsize \textsc{}
        \LARGE \textbf{{Electronics and Computer Science
Faculty of Engineering and Physical Sciences
University of Southampton}
        \normalsize \vspace*{5\baselineskip}}
        }


\author{
        Author \\
        }



\maketitle

在此处输入图片描述

答案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}

相关内容