Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Custom titlepages

telegraphic edited this page Sep 17, 2012 · 1 revision

The title page for this thesis template is based on the requirements for the Mathematical Institute here at Oxford. If you're doing a different degree at a different uni, then chances are you'll have to change the title page to match your needs.

Unfortunately, it turns out that this isn't particularly easy. This page is to give you a rough idea of what you need to do.

The title page is defined in the ociamthesis-lyx.cls file, in a command called \maketitle. While you can hack at the source, a better option is to use \renewcommand, and change it in your document preamble (Document > Settings... > LateX Preamble, in thesis.lyx).

Example

Here's an example for the University of Queensland Economics. They don't need a college field, but they do need a faculty, and a word count on the front page.

% Make some macro definitions
\def\faculty#1{\gdef\@faculty{#1}}
\def\school#1{\gdef\@school{#1}}
\def\wordcount#1{\gdef\@wordcount{#1}}

% Maketitle command, modified for U. Queensland Economics
\renewcommand{\maketitle}{%
\begin{alwayssingle}
    \renewcommand{\footnotesize}{\small}
    \renewcommand{\footnoterule}{\relax}
    \thispagestyle{empty}
  \null\vfill
  \begin{center}
    {\large \vspace*{1mm} {\crest \par} \vspace*{5mm}} 

\vspace*{1ex}
 {{\bfseries {\@university}} \par} \vspace*{1ex}
 {{\bfseries {\@faculty}} \par}   \vspace*{1ex}
 {{\bfseries {\@school}} \par}   

\vspace*{15mm} { \Large {\bfseries {\@title}} \par} \vspace*{15mm}

{ \textsc{By}  \par}            \vspace*{1ex}	 
{ \textsc{\@author} \par} \vspace*{2ex}
{ \textsc{\@degree} \par} \vspace*{10mm}

\begin{doublespace}
{\it \small {\submittedtext} \par} \vspace*{10mm}
\end{doublespace}

{\textsc{\@degreedate} \par} \vspace*{2ex}
{\textsc{\@wordcount}}

  \end{center}
  \null\vfill
\end{alwayssingle}}

% Use graphics package
\usepackage{graphicx}

% The crest on the titlepage can be set by changing the def below.
\def\crest{{\includegraphics{titlepage/uqlogo.pdf}}}

% Set the text on the title page here
% You need to change the \maketitle command to change order on page
\title{An Income Insecurity Index with Applications to Australian Data}
\author{Zach Zhang}
\degree{Bachelor of Economics}
\university{University of Queensland}
\faculty{Faculty of Business, Economics and Law}
\school{School of Economics}

% Set the text on the title page here
\renewcommand{\submittedtext}{An Honours thesis submitted to the School of Economics, the University of Queensland, in partial fulfilment of the requirements for the degree of BEcon (Honours).}

\degreedate{Novemeber 2012}
\wordcount{Word count: 25,000}

In this example, a few new fields are added, and the location of the uni logo is moved. If you copy and paste this into your latex preamble (Document > Settings... > LateX Preamble), you should see the page layout change signficantly.

You'll see that each line of text is separated by a \vspace*{ } command, which adds a vertical space. You'll need to play around with these spacings to make your title page look nice.

Clone this wiki locally