English 中文(简体)
latex template or example for personal statement
原标题:

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 geometry package to establish the desired margins. To get the margins in your sample document, try:

usepackage[left=1in,right=1in,top=1in,bottom=1in]{geometry}

Your next requirement was to fix the title block. LaTeX uses the internal command @maketitle to format the title block. You can redefine this as you like. To achieve the same title block style as in the sample document, use:

usepackage[svgnames]{xcolor}% provides colors for text
makeatletter% since there s an at-sign (@) in the command name

enewcommand{@maketitle}{%
  egin{center}
    parskipaselineskip% skip a line between paragraphs in the title block
    parindent=0pt% don t indent paragraphs in the title block
    	extcolor{red}{f@title}par
    	extbf{@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 (@)

The @title, @author, and @date commands 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 documentclass and egin{document}.

documentclass{article}

% this is the preamble
% put all of the above code in here

	itle{Personal Statement}
author{Tim}

egin{document}

maketitle% prints the title block

Emergency medicine has always been a passion of mineldots

end{document}
问题回答

Attempt #1: I ve used the following style file, which I call cramp2e, for similar purposes. It is probably not right for you, but have a look:

oddsidemargin -1cm 
evensidemargin -2cm 
	opmargin 1cm    
	extheight 24cm
	extwidth 19cm
headheight 0cm
headsep .7cm
footskip .7cm
parskip .2cm
paperheight 25cm
setlengthvoffset{-.33in}
setlengthhoffset{-.25in}

Any good?

Postscript This is for A4 size paper.

A slightly less LaTeX-ey solution would be to not use the maketitle command. A couple of times I ve simply used this as my title(marginsize helps too).

Set up smaller margins:

documentclass{article}
usepackage{anysize}
marginsize{1cm}{1cm}{1cm}{1cm}

(EDIT: 1cm might be even better..) Minimal title:

egin{document}
egin{center}
section*{My Document Title}
	oday
end{center}

% content goes here

end{document}

The result looks something like: Minimal Title





相关问题
Effective Version Control for Slides

I have to maintain a huge set of training material in forms of slides. At a first glance, I ve noticed there s no support for version control in OpenOffice OOImpress (but I might be wrong on this). ...

Maths in LaTex table of contents

I am trying to add a table of contents for my LaTex document. The issue I am having is that this line: subsubsection{The expectation of (X^2)} Causes an error in the file that contains the ...

Using vim s `gqap sometimes indents unusually

For the life of me, I cannot figure out the cause of this: when writing in LaTeX documents, I like to keep my line width to maximum of 80 characters. As such, I will execute the vim command gqap and ...

aligning math equations in Latex

I am trying to align the following equations around the equal sign. What can I do? Thanks! I am using the AMSMath package $$mddot{x}_{1}-K(x_{2}+x_{12})+C(dot{x}_{12}+dot{x}_{2})+2Cdot{x}_{1} ...

LaTeX output does not update

I have just begun using LaTeX. I am working in Windows and am using TeXnicCenter as my editor. When I build and output, having the following code: documentclass{article} egin{document} This is a ...

How to put line break in a math

I d like to express the following sentence (source_location is also italic, it s not correctly rendered): Each entry has a list of tuple: < source_location, R/W, trip_counter, occurrence, killed ...

热门标签