I have started on my own template and am a beginner in this. So far the code is very basic, I want to remove the blank page that is before my title page and the page number at the bottom.
\documentclass[10 pt, a4paper, leqno, oneside]{report}
\usepackage{lscape}
\usepackage{caption}
\usepackage{subfig}
\usepackage[section]{placeins}
\usepackage{listings}
\usepackage{url}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage[table]{xcolor}
\usepackage[swedish, english]{babel}
\begin{document}
\include{titlepage}
\end{document}
And titlepage.tex is
%titlepage
\thispagestyle{empty}
\begin{center}
\begin{minipage}{0.75\linewidth}
\centering
%University logo
\includegraphics[width=0.5\linewidth]{SU_logo.png}
% \rule{0.4\linewidth}{0.15\linewidth}\par
\par
\vspace{3cm}
%Thesis title
{\uppercase{\Large the title of my thesis project which may span multiple lines\par}}
\vspace{2cm}
%Author's name
{\Large Author\par}
\vspace{5cm}
%Degree
{\Large A thesis submitted for the degree of Doctor of Philosophy\par}
\vspace{2cm}
{\Large Examinor \par}
\vspace{3cm}
%Date
{\Large May 2015}
\end{minipage}
\end{center}
%\clearpage

\includealways issues a\clearpage, this will be the blank page, most likely. Try\input{titlepage}– Nov 05 '15 at 20:55\inputvs\include? – Werner Nov 05 '15 at 20:57\inputor\includeis used – Nov 05 '15 at 21:01