1

I have a title and abstract which respects the following codes length. I want to have the abstract and keywords at the first page, is there a way to make it fit nicely?


\documentclass[12pt, draft]{article}
\usepackage{natbib}
\usepackage{setspace} 
 \doublespacing
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage {tikz}
\usepackage[skip=0pt]{caption}
\usepackage{blindtext}
\title{A nice article about how to have a happy life in a savage world}

\author{Someone Happy\thanks{Nowhere University \texttt{myemail@somewhere.com}} \and Other Person \thanks{Faculty of Wisdom, University of some place, Earth. \texttt{myemail@somewhere.com}}}

\date{} \begin{document}

\maketitle \begin{abstract} \blindtext[1] BBBBBBBEEEEEEEEEHHHHHHHHHAAAAAAAAAAPPPPPPPYYYYYY \end{abstract} {\bf Keywords:} Something, Uplifiting, Cheerup!, you can do it, I trust you.

\section{Introduction}

\end{document}

ELLA
  • 175
  • 7

1 Answers1

2

I would like to suggest you take the following approach:

  • Remove the instruction \doublespacing from the preamble.

  • Insert the instruction \setstretch{1.5} right before \begin{abstract}.

  • Insert the instructions clearpage\doublespacing right before \section{Introduction}.

enter image description here

\documentclass[12pt, draft]{article}
\usepackage{natbib}
\usepackage{setspace}

\usepackage{amssymb} \usepackage{amsthm} \usepackage{amsmath} \usepackage {tikz} \usepackage[skip=0pt]{caption} \usepackage{blindtext} \title{A nice article about how to have a happy life in a savage world}

\author{Someone Happy\thanks{Nowhere University \texttt{myemail@somewhere.com}} \and Other Person \thanks{Faculty of Wisdom, University of some place, Earth. \texttt{myemail@somewhere.com}}}

\date{} \begin{document}

\maketitle

\setstretch{1.5} \begin{abstract} \blindtext[1] BBBBBBBEEEEEEEEEHHHHHHHHHAAAAAAAAAAPPPPPPPYYYYYY \end{abstract} {\bf Keywords:} Something, Uplifiting, Cheerup!, you can do it, I trust you.

\clearpage \doublespacing \section{Introduction} \blindtext[2]

\end{document}

Mico
  • 506,678