4

我正在用乳胶写一份个人陈述。我不希望页面顶部的大边距而不是大标题占用大量空间。我只是想使布局紧凑,但仍然清楚地与标题、名称和其他必要信息隔开,因为可能会限制页数。一个例子是http://www.hsc.unt.edu/education/CIM/Documents/PS-Sample2_000.pdf。我想知道在哪里可以找到一些好的乳胶模板或示例?

谢谢并恭祝安康!

4

3 回答 3

4

我会使用该geometry软件包来确定所需的利润。要获取示例文档中的边距,请尝试:

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

您的下一个要求是修复标题栏。LaTeX 使用内部命令\@maketitle来格式化标题栏。您可以根据需要重新定义它。要实现与示例文档中相同的标题栏样式,请使用:

\usepackage[svgnames]{xcolor}% provides colors for text
\makeatletter% since there's 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}
于 2009-12-27T22:07:51.773 回答
1

尝试 #1:出于类似目的,我使用了以下样式文件,我称之为 cramp2e。它可能不适合您,但请看一下:

\奇边距-1cm
\均匀边距-2cm
\上边距 1cm    
\text 高度 24cm
\文本宽度 19cm
\头高0cm
\headsep .7cm
\脚跳0.7厘米
\parskip .2cm
\纸高25cm
\setlength\voffset{-.33in}
\setlength\hoffset{-.25in}

有什么好处吗?

后记这是 A4 尺寸的纸张。

于 2009-12-27T19:40:45.783 回答
0

一个稍微少一点的 LaTeX-ey 解决方案是不使用 \maketitle 命令。有几次我只是简单地将它用作我的标题(marginsize 也有帮助)。

设置较小的边距:

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

(编辑:1cm 可能会更好..) 最小标题:

\begin{document}
\begin{center}
\section*{My Document Title}
\today
\end{center}

% content goes here

\end{document}

结果看起来像: 最小标题

于 2011-05-17T21:56:48.977 回答