几何体边距设置错误

几何体边距设置错误

我有一个本该很简单的问题——我试图将文档的四周边距设置为 1 英寸。我的完整序言如下。我使用 Texifier 程序渲染为 pdf,我喜欢它,因为它可以实时渲染,但我才刚刚开始使用它。脚注中的边距看起来正确,但正文的侧边距要宽得多(因此脚注文本比正文超出约 1/2 英寸)。我真的需要整个文档(正文和脚注)都有 1 英寸的边距。

无论我是否使用双倍行距,问题仍然存在。

这可能与 Texifier 中的默认设置有关吗?

\documentclass[12pt]{article}\title{My Title}

%Layout
%\usepackage{setspace}
%\doublespacing
\usepackage[margin=1in]{geometry}

%Graphics and Tables
\usepackage{graphicx}
\usepackage{tabularx}

%Bibliography/references
\usepackage[style = authoryear]{biblatex}
\addbibresource{bib.bib}


\author{My Name\thanks{My acknowledgments.}
}
\date{\today}


\begin{document}


\maketitle

\abstract{My abstract.}

答案1

你可能正在经历这样的事情:

\documentclass[12pt]{article}
\usepackage[%
  margin=1in,
  showframe,% <- for debugging
]{geometry}

\usepackage{lipsum}% to add mock text

\title{My Title}
\author{My Name\thanks{My acknowledgments.}}
\date{\today}


\begin{document}

\maketitle

\abstract{\lipsum*[10][1-4]}

\lipsum

\end{document}

在此处输入图片描述

你可以看到摘要和下面的文本之间没有空格。原因很简单:你需要

\begin{abstract}
<Text of the abstract>
\end{abstract}

完整示例。

\documentclass[12pt]{article}
\usepackage[%
  margin=1in,
  showframe,% <- for debugging
]{geometry}

\usepackage{lipsum}% to add mock text

\title{My Title}
\author{My Name\thanks{My acknowledgments.}}
\date{\today}


\begin{document}

\maketitle

\begin{abstract}
\lipsum*[10][1-4]
\end{abstract}

\lipsum

\end{document}

在此处输入图片描述

相关内容