Разрыв страницы между введением и аннотацией

Разрыв страницы между введением и аннотацией
\documentclass[twocolumn]{aastex61}
\pdfoutput=1 %for arXiv submission
\usepackage{amsmath,amstext}
\usepackage[T1]{fontenc}
\usepackage{apjfonts} 
\usepackage[figure,figure*]{hypcap}

\renewcommand*{\sectionautorefname}{Section} %for \autoref
\renewcommand*{\subsectionautorefname}{Section} %for \autoref

\shorttitle{AASTeX 6.1 Template}
\shortauthors{AUthor A. et al.}

\begin{document}

\title{Title of the Paper}

\author{Author 1}
\author{Author 2}
\author{Author 3}

\affiliation{The UX}

\begin{abstract}
Abstract of this paper!
\end{abstract}
\keywords{keyword1 --- keyword2 --- keyword3}

\section{Introduction}
Intro to the paper

\section{Summary}
Summary text.

\acknowledgments
Acknowledgments.

%\facility{facility ID}
\facilities{facility ID, facility ID, facility ID} 
\software{Numpy}

\bibliographystyle{yahapj}
\bibliography{references}

\appendix
\section{appendix section}

\end{document}

После использования этой команды в разделе предварительного просмотра я вижу свой заголовок и свою аннотацию; но мое введение начинается с совершенно новой страницы. Как мне этого избежать?

Вот что получилось:

Страница 1 страница 2 страница_3

P.S. Я делаю все это на обороте.

решение1

Класс aastex61определяет, \sectionчто делать

\def\section{%
\if@firstsection
      \maketitle
\global\@firstsectionfalse
     \setcounter{footnote}{\thefront@matter@foot@note}%
     \let\footnotetext=\old@foot@note@text
     \let\footnotemark=\old@foot@note@mark
   \clearpage
   \if@two@col
   \twocolumngrid
   \fi
\fi
    \@startsection{section}{1}{\z@}{9pt plus 1pt minus
    1pt}{4pt}{\apjsecfont\center}} 

Условие \if@firstsectionустановлено как истинное в начале, поэтому эффект первой \sectionкоманды заключается в выдаче \maketitle:

\def\frontmatter@maketitle{%
\@author@finish
\if@firstsection
  \title@column\titleblock@produce
\onecolumngrid
\else
%
\global\firstaffiltrue
 \title@column\secondtitleblock@produce
\fi
  \suppressfloats[t]%
%% Prevent these from being turned off so that
%% we can use \maketitle again for \AllAuthors.
%%
%  \let\and\relax
  \let\affiliation\@gobble
  \let\author\@gobble
%  \let\@AAC@list\@empty
%  \let\@AFF@list\@empty
%  \let\@AFG@list\@empty
%  \let\@AF@join\@AF@join@error
%  \let\email\@gobble
%  \let\@address\@empty
% \let\maketitle\relax
%  \let\thanks\@gobble
\if@firstsection
  \let\abstract\@undefined\let\endabstract\@undefined
  \titlepage@sw{%
   \vfil
   \clearpage
  }{}%
\fi
}%

\let\maketitle\frontmatter@maketitle

Вывод заключается в том, что разрыв страницы после того, как аннотация (фактически, после того, как вся вводная информация) набрана,в розыске.

Вы можете удалить разрыв страницы, добавив перед \begin{document}ним

\makeatletter
\@booleanfalse\titlepage@sw
\makeatother

aastex63С (который также есть в TeX Live) этого больше не происходит .

\documentclass[twocolumn]{aastex63}
\pdfoutput=1 %for arXiv submission
\usepackage{amsmath,amstext}
\usepackage[T1]{fontenc}
%\usepackage{apjfonts} 
\usepackage[figure,figure*]{hypcap}

\renewcommand*{\sectionautorefname}{Section} %for \autoref
\renewcommand*{\subsectionautorefname}{Section} %for \autoref

\shorttitle{AASTeX 6.1 Template}
\shortauthors{AUthor A. et al.}

\begin{document}

\title{Title of the Paper}

\author{Author 1}
\author{Author 2}
\author{Author 3}

\affiliation{The UX}

\begin{abstract}
Abstract of this paper!
\end{abstract}
\keywords{keyword1 --- keyword2 --- keyword3}

\section{Introduction}
Intro to the paper

\section{Summary}
Summary text.

\acknowledgments
Acknowledgments.

%\facility{facility ID}
\facilities{facility ID, facility ID, facility ID} 
\software{Numpy}

\bibliographystyle{yahapj}
\bibliography{references}

\appendix
\section{appendix section}

\end{document}

(Я прокомментировал apjfonts, что у меня нет)

введите описание изображения здесь

решение2

Вы пробовали это:https://stackoverflow.com/questions/55552325/unwanted-page-break-after-maketitle? Я думаю, это может сработать в вашем конкретном случае.

Связанный контент