I have two questions.
How can I center the the title rather that its natural position?
How can I remove the date?
Here is the code:
\documentclass[12pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\title{ \begin{huge}
\textbf{Geometry of manifolds and differential forms}
\end{huge} }
\begin{document}
\maketitle
\end{document}
Here is the output:

\date{}for the second. – Johannes_B Aug 14 '16 at 15:49hugeenvironment. Don't use it. The title is centered horizontally. Do you mean you want it centered vertically? – Johannes_B Aug 14 '16 at 15:50\documentclass[12pt,a4paper]{article} \begin{document} \vspace*{\fill} {\centering\huge\textbf{Geometry of manifolds and differential forms} \par} \vspace*{\fill} \end{document}– Johannes_B Aug 14 '16 at 15:51