[Tex/LaTex] Custom title page in report or book class

book-designreporttitles

I have a long academic report to write and I am thinking of using the book class or the report class? However in both these classes the title page has the title in the centre. I want to make my own title page with a few images related to the report, the logo of my instititute etc.? How to do this?

Best Answer

This is the extreme abuse of features provided by LaTex. This should serve as a model and the length parameters can be changed as per personal needs.

\documentclass{book}
\usepackage[tc]{titlepic}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage[executivepaper,margin=1in]{geometry}
\definecolor{title}{RGB}{180,0,0}
\definecolor{other}{RGB}{171,0,255}
\definecolor{name}{RGB}{255,0,0}
\definecolor{phd}{RGB}{0,0,240}
\begin{document}
\title{\bfseries {\sc\textcolor{title}{The title of your report goes here and \\ this is the second line}}}
\author{\textcolor{other}{Thesis  submitted to} \\[5pt]
\emph{\textcolor{other}{Your University}}\\[2cm]
 \textcolor{other}{in partial fulfilment for the award of the degree
 of} \\[2cm]
\textsc{\Large{\textcolor{phd}{Doctor of Philosophy}}} \\[5pt]
  \textcolor{other}{in some subject} \vspace{0.4cm} \\[1in]
  \textcolor{other}{By}\\[5pt] {\Large \sc \textcolor{name}{Me}}
   \vspace{2cm}
\titlepic{\includegraphics[width=0.19\textwidth]{example-image-a}\\[5pt]
\textcolor{other}{Department of Subject}\\[5pt]
 \textcolor{other}{Address line -- 2}\\[5pt]
 \textcolor{other}{Address line -- 4,
 INDIA}\\
 \vfill
 \textcolor{other}{April 2011}}}

\date{}

\maketitle
\end{document}

enter image description here

Option -- 2

One can simply use titlepage as an alternative. Here we don't use \title and \author but everything is done manually.

\documentclass{book}
\usepackage{graphicx}
\usepackage[executivepaper,margin=1in]{geometry}
\usepackage[charter]{mathdesign}
%-----------------------------------------------------------------
\begin{document}
% ----------------------------------------------------------------
\begin{titlepage}
\begin{center}
 {\huge\bfseries The title of your report goes here and \\ this is the second line\\}
 % ----------------------------------------------------------------
 \vspace{1.5cm}
 {\Large\bfseries Author -- 1}\\[5pt]
 email@gmail.com\\[14pt]
  % ----------------------------------------------------------------
 \vspace{2cm}
{Thesis  submitted to} \\[5pt]
\emph{{Your University}}\\[2cm]
{in partial fulfilment for the award of the degree
 of} \\[2cm]
\textsc{\Large{{Doctor of Philosophy}}} \\[5pt]
{in some subject} \vspace{0.4cm} \\[2cm]
% {By}\\[5pt] {\Large \sc {Me}}
 \vfill
 % ----------------------------------------------------------------
\includegraphics[width=0.19\textwidth]{example-image-a}\\[5pt]
{Department of Subject}\\[5pt]
{Address line -- 2}\\[5pt]
{Address line -- 4,
 INDIA}\\
 \vfill
{April 2011}
\end{center}
\end{titlepage}
% ----------------------------------------------------------------
\end{document}

enter image description here

Related Question