\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}
Después de usar este comando, en la sección de vista previa, veo mi título y mi resumen; pero mi introducción comienza desde una página completamente nueva. ¿Cómo evito esto?
Aquí está el resultado:
PD: Estoy haciendo todo esto al dorso.
Respuesta1
La aastex61
clase define \section
hacer
\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}}
El \if@firstsection
condicional se establece en verdadero al principio, por lo que el efecto del primer \section
comando es emitir \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
La conclusión es que el salto de página después de que se ha compuesto el resumen (en realidad, después de toda la información inicial) esbuscado.
Puede eliminar el salto de página agregando, antes \begin{document}
,
\makeatletter
\@booleanfalse\titlepage@sw
\makeatother
Esto ya no pasa con aastex63
(que también está en 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}
(Comenté apjfonts
que no tengo)
Respuesta2
¿Has probado esto?https://stackoverflow.com/questions/55552325/unwanted-page-break-after-maketitle? Creo que podría funcionar en tu caso particular.