
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
인쇄된 작업의 레이아웃을 변경하지 않는 것이 가장 좋지만, 다른 용도로 사용하는 경우에는 불만 사항이 있는지 확인하십시오.