[Tex/LaTex] How to get this title page

horizontal alignmenttitles

another halfdoc format

I want my university title page but I wonder if can I get this. As I was trying a lot with many classes but I am not getting the correct format. Could someone help me to get this? I don't know how to get the correct format exactly the same as the requirement. So I included in tags. I hope I get an excuse for this.

\newenvironment{alwayssingle}{%
       \@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
       \else\newpage\fi}
       {\if@restonecol\twocolumn\else\newpage\fi}

\newenvironment{custom}{}

%define title page layout
\renewcommand{\maketitle}{%
\pagenumbering{roman} % Sasa Tomic
\setcounter{page}{0}  % Sasa Tomic
\begin{alwayssingle}
    \renewcommand{\footnotesize}{\small}
    \renewcommand{\footnoterule}{\relax}
    \thispagestyle{empty}
%  \null\vfill
  \begin{center}
   \begin{flushleft} { \Large {\bfseries {\@university}} \par} \end{flushleft}
    \begin{flushleft} {{\Large \@collegeordept} \par} \end{flushleft}
    \begin{flushleft} {{\Large Author: \@author} \par} \end{flushleft}
    \begin{flushleft} {{\Large E-mail address: sagh0901@student.miun.se} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Study programme: Msc Computer Science} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Examiner: Blah Blah} \par} \end{flushleft}
    \begin{flushleft} {{\Large Tutors: Andreas Nordgren, email} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Scope: ??? words inclusive of appendices} \par}
    \end{flushleft}
    \begin{flushleft} {{\Large Date: \@degreedate} \par} \end{flushleft} 
    {\large \ {{\@crest} \par} \vspace*{25mm}}
     {\large {M.Sc. Thesis within Computer Engineering 30hp points} \par}
      { \Large {\bfseries {\@title}} \par}
      {\normalsize {Subtitle} \par}
      {\Huge {\@author} \par}
  \end{center}

\end{alwayssingle}}

Best Answer

As already remarked in my comment, you only need the titlepage enviroment to create a title on your own.

\documentclass[11pt,english]{report}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{isodate}

\begin{document}
  \begin{titlepage}
    \sffamily
    \raggedright
    \textbf{University}\\
    The Department of Information Technology and Media (ITM)\\
    Author: [Author's Name]\\
    E-Mail address: [Author's E-Mail address]\\
    Study programme: [Study programme, credit points]\\
    Examiner: [Dr. Anders Andersson, e-mail address]\\
    Tutors: [Bertil Bertilsson, organiston X, e-mail address]\\
    Scope: 6630 words inclusive of appendices\\
    Date: \isodate{\today}

    \centering
    \vfill
    [Place for Illustration]
    \vfill
    \large
    [B.Sc. Thesis / M.Sc. Thesis / project report\\
    within Computer Engineering / Electrical Engineering\\
    A/B/C/D, course, X points]\\[\bigskipamount]
    \huge
    [Title]\\
    \large
    [Subtitle]\\[\bigskipamount]
    \huge
    [Author's Name]
  \end{titlepage}
\end{document}
Related Question