我在使用 latex 模板时遇到了问题elsarticle
。我的摘要很长(由于间距和期刊指定的字体大小,超过 2 页),当我使用时,lineno
页脚变得很拥挤(请参见图片)。
这与这里的问题类似,我已经查看了答案:elsarticle 和 lineno 的问题
但是,在这种情况下使用\enlargethispage{-2\baselineskip}
after\end{frontmatter}
不起作用,因为摘要超过 2 页(尽管我希望能够申请\enlargethispage{}
第一页。但是,由于特定期刊的要求,即使是我的摘要,我也需要行号。
有没有什么办法可以让超过 2 页的摘要具有行号,同时又不至于使页脚变得拥挤?
示例代码在这里
\documentclass[preprint,review]{elsarticle}
\usepackage{lipsum}
% ADDING LINENUMBERS FOR REVIEWING:
\usepackage{lineno}
\linenumbers
\journal{The Name Of The Journal}
\begin{document}
\begin{frontmatter}
\title{The Tile Of The Article}
\author[]{Name1 Surname1\corref{cor1}}
\ead{[email protected]}
\cortext[cor1]{Corresponding author. Tel.: WHATEVER; Fax: WHATEVER.}
\author[]{Name2 Surname2}
\ead{[email protected]}
\author[]{Name2 Surname3}
\ead{[email protected]}
\address{Research Structure Name, University Name, Full Postal Address.}
\begin{abstract}
\lipsum[1-6]
\end{abstract}
\begin{keyword}
Keyword1; Keyword2; Keyword3; Keyword4; Keyword5
\end{keyword}
\end{frontmatter}
\section{Introduction and background}
\subsection{Introduction}
\lipsum[1-5]
\subsection{Background}
\lipsum[6-15]
\subsection{Aims and scope}
\lipsum[16-20]
\section{Conclusions}
\lipsum[21-30]
\section*{Acknowledgements}
Thanks to all!
\end{document}