\documentclass[a4paper,oneside,12pt]{report}

%---------------------Pakets
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{ae}
\usepackage[english]{babel}%bei deutschen Arbeiten english durch ngerman ersetzen

\usepackage{titling}
\author{Isaac Newton}% FILL IN YOUR NAME
\title{Thesis Title}% FILL IN YOUR TITLE
\date{Month Year}% FILL IN DATE OF HANDING IN THE THESIS

\usepackage[pdftex]{graphicx, color}
\usepackage[font=small,labelfont=bf]{caption}
\usepackage{subfigure}
\pdfpkresolution=300
\pdfimageresolution=300

\usepackage{geometry}
%\geometry{textheight=24.2cm,left=2.5cm,right=2.5cm,bottom=2.5cm,head=1.5cm,headsep=1.5cm}
\geometry{textheight=24.2cm,right=3cm, left=3cm, bottom=2.5cm, head=2cm,headsep=1cm}
\usepackage{lastpage}


\usepackage[pdfa,hidelinks]{hyperref}\usepackage{hyperxmp}
\hypersetup{% setup for PDF-A and meta data: PLEASE FILL OUT
 pdfencoding=unicode,
 pdflang=en,% oder auf de setzen!
 %bookmarks=true,
 colorlinks=true,
 linkcolor= blue,
 citecolor=blue,
 pdfdisplaydoctitle=true,
 pdftitle={\thetitle},
 pdfauthor={\theauthor},
 pdfdate={\thedate},
 pdfsubject={},% PLEASE FILL OUT, IF APPLICABLE
 pdfkeywords={Key words},% PLEASE FILL OUT
 pdfcontactaddress={Meckenheimer Allee 176},
 pdfcontactcity={Bonn},
 pdfcontactpostcode={53115},
 pdfcontactcountry={Germany},
 %pdfcontactregion={},
 pdfcontactemail={meteorologie-geophysik@uni-bonn.de},% PLEASE FILL OUT
 pdfcontactphone={+49 228 73 2466},
 pdfcopyright={Universität Bonn, Meteorologie und Geophysik},
 pdfcontacturl={http://www.ifgeo.uni-bonn.de/studiere-pea},
 pdfmetalang=en,% oder auf de setzen!
}
\makeatother

\usepackage[round]{natbib}
%\bibpunct[; ]{(}{)}{,}{a}{}{;}

%no indent in first row
\setlength{\parindent}{0pt}
%depth of numbering sections
\setcounter{secnumdepth}{4}
%depth of table of contents
\setcounter{tocdepth}{4}
%list subfigures in list of figures
\setcounter{lofdepth}{2}

\usepackage{amsmath}
\numberwithin{equation}{chapter}
\renewcommand{\theequation}{\thechapter.\arabic{equation}}


\begin{document}
%----------------------Title page according to examination office
\pagenumbering{roman}
\begin{titlepage}
	\begin{center}
	\begin{huge}
	{\bf \thetitle}
	\end{huge}
\vfill
	\pageref{LastPage} pages\\[3mm]
	number of figures, number of tables, number of appendix\\%---FILL OUT or DELETE
\vfill
	submitted as a\\[3mm]
	\begin{large}
	{\sc Master's Thesis}
	\end{large}\\[3mm]
	in the degree program\\[3mm]
	MSc. Physics of the Earth and Atmosphere\\[3mm]
	at the\\[3mm]
	University of Bonn\\
\vfill
	by \\[3mm]
	\begin{large}
	{\sc \theauthor}%---FILL IN YOUR NAME
	\end{large}\\
\vfill
	1. Supervisor: N.N. \\[3mm]
	2. Supervisor: N.N. \\%---FILL IN SUPERVISOR NAMES
\vfill
	{\sc Bonn, \thedate}
	\end{center}
\end{titlepage}


%--------------------Danksagung
\chapter*{Acknowledgements}\chaptermark{Acknowledgements}%deutsch Danksagung


%--------------------Table of Contents
\tableofcontents
\newpage
%--------------------Lists
\addcontentsline{toc}{chapter}{List of Figures}%deutsch Abbildungsverzeichnis
\listoffigures
\newpage
\addcontentsline{toc}{chapter}{List of Tables}%deutsch Tabellenverzeichnis
\listoftables

%--------------------if applicable, further lists (e.g. Symbols, Abbreviations, Software...)

%--------------------Introduction
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{Introduction}%deutsch Einleitung

%--------------------Main text
\chapter{Chapter Title}

\newpage

\section{Section Title}

\newpage

\section{Section Title}

%--------------------Conclusions
\chapter{Conclusions}%deutsch Schluss

%--------------------Appendix
\appendix
\chapter{Appendix Title}


%--------------------Bibliography CAN BE CREATED WITH BibTeX
%\renewcommand{\bibname}{References}
\begin{thebibliography}{1}
\addcontentsline{toc}{chapter}{References}%deutsch Literaturverzeichnis; COMMENT IN renewcommand ABOVE


	\bibitem[Author ONE (Year)]{one}
	Name, Year. Title. Editor, etc.
	
\end{thebibliography}


%--------------------last page Erklärung
\chapter*{Statutory Declaration}%deutsch Eidesstattliche Erklärung
\thispagestyle{empty}\addtocounter{page}{-1}
I hereby declare to have written this thesis independently and to have used no sources other than those indicated. All quotations used are clearly marked.
%deutsch Hiermit versichere ich, dass ich die vorliegende Arbeit selbständig verfasst und keine anderen als die angegebenen Quellen benutzt habe. Alle verwendeten Zitate sind kenntlich gemacht.
\\[3cm]
\hspace*{-0.1cm}\hrulefill\par
{\sl Place\hfill Date\hfill Signature}

\end{document} 
