Nico3007
Nico3007

Reputation: 71

Unwanted page break after \maketitle

I'm trying to remove the page break I get after the abstract section in a research paper. What could be wrong in my code?

\documentclass[preprint,pre,floats,aps,amsmath,amssymb]{revtex4}

\usepackage{graphicx}
\usepackage{bm}

\begin{document}

\title{A Blockchain-Based Approach to Identity Management for the Aviation Industry}
\author{BlaBla}
\affiliation{Chair of Quantitative Business Administration}


\begin{abstract}
Some texts 
\end{abstract}

\maketitle


\section{Introduction}
\label{sec:intro}

some text

\end{document}  

I want the introduction paragraph to be just below the abstract and not in a new page. And if anyone knows how to put a small space between the \affiliation and the /abstract that would be awesome too.

Upvotes: 6

Views: 12477

Answers (1)

If you are writing an article to be submitted to a journal, you should adhere to the style they specify.

If you are writing just for your personal purposes, you could temporarily redefine the \clearpage macro:

\documentclass[preprint,pre,floats,aps,amsmath,amssymb]{revtex4}

\usepackage{graphicx}
\usepackage{bm}

\begin{document}

\title{A Blockchain-Based Approach to Identity Management for the Aviation Industry}
\author{BlaBla}
\affiliation{Chair of Quantitative Business Administration}


\begin{abstract}
Some texts 
\end{abstract}

{
\let\clearpage\relax
\maketitle
}

\section{Introduction}
\label{sec:intro}

some text

\end{document}  

Upvotes: 2

Related Questions