Custom title page in report or book class?
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}
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 protected]\\[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}
The above answer summarizes it all. However, here is another simpler cover page, which one can easily comprehend-
\documentclass[a4paper,12pt]{report}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{setspace}
\usepackage[top=1.2in, bottom=1.2in]{geometry}
\begin{document}
\begin{titlepage}
\begin{center}
\begin{spacing}{1.5}
Internship Project Report\\
\vspace*{\fill}
\end{spacing}
\begin{spacing}{2.5}
\textbf{\huge The Title of Image Comes Here}\\[0.5cm]
\vspace*{\fill}
\textit{Submitted by}
\end{spacing}
\begin{spacing}{1.15}
\textbf{\large Your Name}
\textbf{\large Other Details}
\vspace*{\fill}
\textnormal{\large Department \\ Institute Name\\ Location\\ Date}
\end{spacing}
\end{center}
\end{titlepage}
\end{document}