I am writing a personal statement in latex. I don’t want the big margin at the top of the page not big title taking a lot of space. I just like to make the layout compact but still clearly spaced with title, name and other necessary information, since there may be restriction on the number of pages. One example would be http://www.hsc.unt.edu/education/CIM/Documents/PS-Sample2_000.pdf. I wonder where to find some good latex templates or examples?
Thanks and regards!
I would use the
geometrypackage to establish the desired margins. To get the margins in your sample document, try:Your next requirement was to fix the title block. LaTeX uses the internal command
\@maketitleto format the title block. You can redefine this as you like. To achieve the same title block style as in the sample document, use:The
\@title,\@author, and\@datecommands will print the title, author, and date. You can use whatever formatting commands you like to set the text in bold, different colors, etc.Put all of the above commands in the preamble of the document. The preamble is the space between
\documentclassand\begin{document}.