创建一个“特殊”封面

创建一个“特殊”封面

我想创建类似这样的封面:

在此处输入图片描述

我找到了 (https://www.overleaf.com/latex/templates/imperial-college-london-phd-thesis-latex-template/zfybynnyczhb)但我无法让它工作,我的意思是,我读了代码:

\documentclass[a4paper,12pt,twoside]{report}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=3cm]{geometry}

\include{thesis.preamble}


\begin{document}

\title{\LARGE {\bf Title of my Ph.D. Thesis}\\
 \vspace*{6mm}
}

\author{Joe Bloggs}
\submitdate{October 2008}

\normallinespacing
\maketitle

\preface
\input{abstract/abstract}
\input{acknowledgements/acknowledgements}
\input{dedication/dedication}
\input{quotes/quotes}

\body
\input{introduction/introduction}
\input{background/background}

% body of thesis comes here

\input{conclusion/conclusion}

\appendix
% appendices come here


\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{alpha}
\bibliography{bibliography/bibliography}

\end{document}

但是我找不到在哪里可以更改大学名称和其他一些内容,例如(第一)页底部的文本。

我不知道如何开始。

答案1

定义您自己的标题页。更多信息可以在如何自定义我的扉页

francolino标题页

\documentclass{report}
\begin{document}
\begin{titlepage}
    \centering
    {\Large
    University of London\par
    Some college\par
    Department of Computing\par
}
    \vfill
    {\Huge\bfseries
Peter Piper picked a peck of pickled peppers\par
}
\vspace{6ex}
{\Large
Walzing Wombat
\par}
\vfill
\parbox{.5\textwidth}{\centering Submitted in fullfillment of something to get some fancy degree
in computing, some locale 2015}
\end{titlepage}
\end{document}

相关内容