I'm completely new to Latex and would like to design a title page for my Bachelor thesis. After some research, I've found a title page layout in another post here that I would love to use:
Unfortunately, I don't know how to implement it in Latex and don't understand the instructions given in the other post. I would be grateful for any help!
Currently, this is my preamble and start:
\documentclass[a4paper, 12pt]{article}
\usepackage{apacite}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage{etoolbox}
\usepackage[hyphens]{url}
\urlstyle{same}
\usepackage{amsmath}
\usepackage{rotating}
\usepackage{dcolumn}
\makeatletter
\patchcmd{\@caption}{\csname the#1\endcsname}{\csname fnum@#1\endcsname:}{}{}
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{4.5em}}
% default for 3rd arg: 2.3em
\let\l@table\l@figure % as in article.cls
\makeatother
%define the author
\author{John Smith}
%define the title
\title{Blue Elephants}
\begin{document}
%omits page number
\pagenumbering{gobble}
%generates the title
\maketitle
\newpage
\end{document}
My existing code is mostly copy and pasted from this website to get my thesis layout to work. It's just the title page that I'm having issues with.
This is my first post. I hope I respected any potential rules.
Thank you!
