I am writing an article and they ask of the following format
First page: paper title, authors’ name(s) and affiliation(s). Second page: paper title and abstract Third page: paper title and the main text.
I have the following structure
\documentclass[preprint,12pt]{elsarticle}
\begin{document}
\begin{frontmatter}
\title{My Title}
\author{That's me}
\address{Affiliation goes here}
\end{frontmatter}
\newpage
\title{My Title}
\begin{abstract}
Lorem ipsum something something
\end{abstract}
\begin{keyword}
Keywords here
\end{keyword}
\newpage
\title {My Title}
\section{Introduction}
Lorem ipsum something something
\end{document}
It doesn't show first two pages. I tried to use \begin{frontmatter} \end{frontmatter} and it replicates author info at every page. How do I adjust what they want?
elsarticletemplate. So I would assume if you are indeed planning to submit to Elsevier, and the template you use is the recent template they provide and you used it according to instructions, then what you get is what they want. What makes you think otherwise? – Manuel Weinkauf Jun 29 '20 at 09:38titlingpackage, it should allow you to reuse/remake title pages multiple times in the document. See here for example. – Manuel Weinkauf Jun 30 '20 at 14:14