摘要 elsarticle 中 \paragraph 的使用

摘要 elsarticle 中 \paragraph 的使用

我正在使用elsarticle类来准备预印本。为此,我想使用结构化摘要,即在摘要中使用不同的段落标题。但是,\paragraph在标题页和最后一段命令之前使用一个空白页的结果不会显示在最终输出中。我真的不知道我应该在哪里查看。或者,我可以简单地使用斜体文本来实现所需的结果,但是,如果知道问题和解决方法会很好。

这是一个 MWE。

\documentclass[preprint,12pt,authoryear]{elsarticle}
\begin{document}
\begin{frontmatter}
\begin{abstract}
\paragraph{Introduction}
\paragraph{Conclusions}
\end{abstract}
\end{frontmatter}
\end{document}

答案1

您可以使用\paragraph,但不能将其作为摘要中的第一个对象。

\documentclass[preprint,12pt,authoryear]{elsarticle}
\begin{document}
\begin{frontmatter}
\begin{abstract}
\mbox{}\par\vspace{-\baselineskip}% unless you have text before \paragraph
\paragraph{Introduction}
Intro
\paragraph{Conclusions}
Conc
\end{abstract}
\end{frontmatter}
\end{document}

然而,我认为这种方法没有什么实际意义:摘要应该简短而清晰。

在您的示例中,空白页是由\paragraph摘要中的第一个对象生成的;第二个\paragraph没有显示,因为其后没有文本(如果您有\paragraph{Foo}并且没有文本,也会发生这种情况\end{document}

我们\mbox{}\par生成一个虚拟段落,但我们需要备份一行。

相关内容