Need help on title page. I build my own .sty for modify the titlepage.
When my title is too long, it should go the next line with some spacing but it doesnt spacing in my case. I use report.cls.
Code: Select all
\def\@id{\relax}
\newcommand{\id}[1]{\gdef\@id{#1}}
\def\@years{\relax}
\newcommand{\years}[1]{\gdef\@years{#1}}
\renewcommand{\maketitle}{
\null
\vfill
\thispagestyle{empty}
\begin{center}
{\rmfamily\LARGE \bf \@title}\\
\vspace{4cm}
{\rmfamily\LARGE \@author}\\
\vspace{1cm}
{\rmfamily\LARGE \@id}\\
\vspace{4cm}
{\rmfamily\LARGE \@years}\\
\vspace{1cm}
{\rmfamily\LARGE FACULTY OF ENGINEERING}\\
\vspace{1cm}
{\rmfamily\LARGE MULTIMEDIA UNIVERSITY}\\
\vspace{1cm}
{\rmfamily\LARGE \@date}\\
\vspace{1cm}
\end{center}
\cleardoublepage
\vfill
\null
}