如何设置 LaTeX 中的边距?

如何设置 LaTeX 中的边距?

我想像这样设置边距:

Paper size:  A4 or US Letter

US Letter first page    Top 72 Left 54 Right 54 Bottom 54 pt
US Letter other pages   Top 54 Left 54 Right 54 Bottom 54 pt

Font embedding: Fonts that are not embedded may be rendered incorrectly

Font subsetting: Subsetting embedded fonts reduces the file size

Type 3 fonts are rasterized fonts, which may impair the on-screen
readability of the document

Oriental fonts require oriental language 

如何在 LaTeX 格式中实现?非常感谢!

答案1

这是一个选项,使用geometry. 将以下内容添加到您的序言中:

\usepackage{geometry}
\geometry{
  paper=a4paper,
  margin=54pt,
  includeheadfoot
}

这设置全部边距(顶部、底部、左侧右)在 A4 页面上为 54pt(paper=letterpaper如果您使用的是美国信纸尺寸,请使用)。此外,边距设置为包含页眉和页脚作为规范的一部分。然而,这不符合第一页的要求,第一页的顶部边距必须为 72pt(比其他页面多 18pt)。为此,我会在第一页插入适当的垂直调整,同时添加

\renewcommand{\IEEEtitletopspaceextra}{\dimexpr-\headheight-\headsep+18pt\relax}

在您的文档序言中的某处。

相关内容