I am trying to write a thesis from scratch. How can I develop a cover page like this?
This is my LateX source.
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{
{Thesis Title}\\
{\large Institution Name}\\
{\includegraphics[scale=0.10]{logo.png}}
}
\author{Author Name}
\date{Day Month Year}
\begin{document}
\maketitle
\chapter*{Abstract}
Abstract goes here
\chapter*{Dedication}
To mum and dad
\chapter*{Declaration}
I declare that..
\chapter*{Acknowledgements}
I want to thank...
\tableofcontents
\chapter{Introduction}
Lorem ipsum...
\chapter{Literature Review}
Lorem ipsum...
\chapter{Methodology}
Lorem ipsum...
\chapter{Discussion and Analysis}
Lorem ipsum...
\chapter{Conclusion}
Lorem ipsum...
\appendix
\chapter{Questionnaire}
Lorem ipsum...
\chapter{Regression Output}
Lorem ipsum...
\end{document}
My code will result into something like this.




\documentclass{book}environment for something closer to this look.\documentclass{report/article}will help too but then you have to play a little with the positioning of the logo and text on the title page. Also, for a thesis, I will always recommend a book environment, if that matters. – tachyon Dec 05 '19 at 13:48