Having a lot of problems with LaTeX at the moment. I need my article to have a top margin of 33mm, but for some reason my title page has a much larger margin. Is there a simple fix I have overlooked?
MWE:
\documentclass[a4paper,oneside,12pt]{article}
\usepackage[english]{babel} % formatting rules for the English language
\usepackage[T1]{fontenc} % proper formatting for accented characters and non-standard characters such as pipelines
\usepackage[top=33mm, bottom=38mm, left=26mm, right=20mm]{geometry} % page layout
\usepackage{lmodern} % font formatting
\usepackage{float} % allow floating environments such as figures
\usepackage{amsmath} % math eqn formatting
\usepackage{amssymb} % math fonts
\title{\bf{\fontsize{14pt}{2pt} Title}}
\author{\fontsize{14pt}{2pt} Author names}
\date{}
\begin{document}
\maketitle
\end{document}


\title{\vspace{-3cm} ...}– Fran Mar 11 '14 at 11:53showframetogeometrypackage to check how far is still from the top margin. The\maketitledefinition inarticle.clsadd 2em because this is the usual in the finest journals. Adding a vertical space -2em should be enough to change this default. – Fran Mar 11 '14 at 12:28