elsarticle.cls 中段落之间的垂直间距

elsarticle.cls 中段落之间的垂直间距

elsarticle.cls如果我想在段落之间留出一点垂直间距,我会不会觉得这很不合常理?

\setlength{\parsep}{12pt}如果没有,为什么在调用文档中放置序言不起作用?

\parsep设置方法如下elsarticle.cls

 \setlength{\parsep}{0pt plus1pt minus1pt}%
 \setlength{\parskip}{0pt plus1pt minus1pt}

下面是一个允许探索这一点的 mwe:

\documentclass[review]{elsarticle}
\usepackage{lineno}
\usepackage{lipsum}

\setlength{\parindent}{12pt} % this works
\setlength{\parsep}{12pt} % this not having an effect

% set frequency of line numbers
\modulolinenumbers[2]

\journal{The Periodical}

% `Elsevier LaTeX' style
\bibliographystyle{plainnat}

\begin{document}

\begin{frontmatter}
% include title and subtitle
\title{The title}
% include authors, addresses, corresponding author
\author{Author}
\begin{abstract}
\end{abstract}
\begin{keyword}
easy, should-know-this, trivial, annoying, probably need help with the plus minus representation of lengths thing, apologies in advance
\end{keyword}
\end{frontmatter}

% select to show line numbers
\linenumbers

\tableofcontents

\newpage


% introduction
\section{Introduction}

\lipsum[2]\\

\lipsum[3-4]

\end{document}

答案1

我认为你应该换成\parskip,而不是\parsep

如果您正在向使用该类别的出版物提交作品,elsarticle最好不要更改印刷作品的布局,但如果用于其他用途,则请继续查看是否收到任何投诉。

相关内容