如何删除 Elsevier 最终输出中空白摘要周围的两行?

如何删除 Elsevier 最终输出中空白摘要周围的两行?

我正在使用它\documentclass[final]{elsarticle}来准备一篇即将提交给 Elsevier 期刊的论文的补充材料。显然这里不需要摘要,但我不知道如何去掉这两条水平线:

在此处输入图片描述

这是我的 MWE:

\documentclass[final,3p,times,11pt]{elsarticle}
\usepackage{lipsum}

\begin{document}
    \begin{frontmatter}
        \title{This is the paper you are looking for}
        \author[]{O. Kenobi}
    \end{frontmatter}
    \lipsum[8]
\end{document}

至少有两个相关问题解决了这个问题\documentclass[preprint]{elsarticle},但这些解决方案不适用于[final]

答案1

这些规则在标题的构造中是硬编码的,即使没有提供摘要或关键词,它们仍然存在。删除它们的最佳方法是重新定义\MaketitleBox(或使用etoolbox修补):

在此处输入图片描述

\documentclass[final,3p]{elsarticle}

\usepackage{lipsum}

\makeatletter
\renewcommand{\MaketitleBox}{%
  \resetTitleCounters
  \def\baselinestretch{1}%
  \begin{center}
    \def\baselinestretch{1}%
    \Large \@title \par
    \vskip 18pt
    \normalsize\elsauthors \par
    \vskip 10pt
    \footnotesize \itshape \elsaddress \par
  \end{center}
  \vskip 12pt
}
\makeatother

\begin{document}

\begin{frontmatter}
\title{This is the paper you are looking for}
\author{O. Kenobi}
\end{frontmatter}

\lipsum[8]

\end{document}

重新定义实际上只是从原始内容中抓取所有内容,\MaketitleBox直到通常插入规则的位置。您可以调整标题下方的空间以满足您的需求。

相关内容