减少摘要的顶部边距

减少摘要的顶部边距

如何才能减小摘要的顶部边距?

\documentclass{article}
\usepackage[english]{babel}
\usepackage{lipsum}

\title{title title title title title title title}
\author{Blah Blah}

\begin{document}
\maketitle

\begin{abstract}
\lipsum[75]
\end{abstract}

\section{Introduction}
\lipsum
\end{document}

我将用它作为论文:

https://www.overleaf.com/latex/templates/mkzrzktcbzfl/clone

答案1

这有点黑客,但你可以使用标题包中删除日期后的空格,从而有效地减少了摘要的顶部边距:

\documentclass{article}
\usepackage[english]{babel}
\usepackage{lipsum}
\usepackage{titling} % we need this for the \postdate tag

\title{title title title title title title title}
\author{Blah Blah}
% The line below removes 1em of space directly below the date,
% which here is also directly above the abstract
\postdate{\end{center}\vspace*{-1em}}

\begin{document}
\maketitle

\begin{abstract}
\lipsum[75]
\end{abstract}

\section{Introduction}
\lipsum
\end{document}

你可能会注意到,使用标题包会在一定程度上影响标题内容的其他垂直间距,但好处是,此间距的每个方面都可以轻松自定义;例如,

\setlength{\droptitle}{-1em}

将使所有标题内容垂直提升1em;对于标题材料的任何部分几乎都可以找到类似的命令。

答案2

快速而肮脏的黑客攻击:

\documentclass{article}
\usepackage[english]{babel}
\usepackage{lipsum}

\title{title title title title title title title}
\author{Blah Blah}

\begin{document}
\maketitle
\vspace*{-1cm}
\begin{abstract}
\lipsum[75]
\end{abstract}

\section{Introduction}
\lipsum
\end{document}

在此处输入图片描述

相关内容