\documentclass{article}
\title{Title}
\author{Name}
\date{}
\begin{document}
\begin{titlepage}
\maketitle
\end{titlepage}
\end{document}
Hi, how can I write a title in a centre?
\documentclass{article}
\title{Title}
\author{Name}
\date{}
\begin{document}
\begin{titlepage}
\maketitle
\end{titlepage}
\end{document}
Hi, how can I write a title in a centre?
If you want to use chapter you should change the type of class from \documentclass{article} to \documentclass{report}
you could use the \usepackage{sectsty} to put the chapter title in the center.
\documentclass{report}
\usepackage{sectsty}
\chapterfont{\huge\centering}
\chaptertitlefont{\centering}
\begin{document}
\chapter{Related Work}
\end{document}
articleclass (which does not have chapters) and a title page? I'm confused what you are trying to do. – samcarter_is_at_topanswers.xyz Aug 05 '18 at 13:31