geometry package, . , :
\usepackage[left=1in,right=1in,top=1in,bottom=1in]{geometry}
. LaTeX \@maketitle . , . , , :
\usepackage[svgnames]{xcolor}% provides colors for text
\makeatletter% since there an at-sign (@) in the command name
\renewcommand{\@maketitle}{%
\begin{center}
\parskip\baselineskip% skip a line between paragraphs in the title block
\parindent=0pt% don't indent paragraphs in the title block
\textcolor{red}{\bf\@title}\par
\textbf{\@author}\par
%\@date% remove the percent sign at the beginning of this line if you want the date printed
\end{center}
}
\makeatother% resets the meaning of the at-sign (@)
\@title, \@author \@date , . , , , ..
. - \documentclass \begin{document}.
\documentclass{article}
% this is the preamble
% put all of the above code in here
\title{Personal Statement}
\author{Tim}
\begin{document}
\maketitle% prints the title block
Emergency medicine has always been a passion of mine\ldots
\end{document}