如何同时调整和保留段落间距?

如何同时调整和保留段落间距?
\documentclass[10 pt,a4paper,twoside,reqno]{amsart} 
\usepackage{amsfonts,amssymb,amscd,amsmath,enumerate,verbatim,calc,graphicx} 
\renewcommand{\baselinestretch}{1.2} 
\usepackage{bm}
\usepackage{ragged2e}
\textwidth = 12.5 cm 
\textheight = 20 cm 
\topmargin = 0.5 cm 
\oddsidemargin = 1 cm 
\usepackage[abs]{overpic}
\evensidemargin = 1 cm 
\pagestyle{plain} 
\newcommand\blfootnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
\newtheorem{theorem}{Theorem}
\newtheorem{definition}{Definition}
\begin{document}
\justify
\centering
\title{\textbf{ON THE REFLECTION PROPERTY OF A CIRCULAR PARABOLOID}}
\maketitle
\author{\textbf{S. Aryan}}
\begin{abstract}
 Text for abstract. 
\end{abstract}
\section{Introduction}
\justify
 This is the introduction. 
 \end{document}

当我运行此代码时,我打印的文本“This is the Introduction”在单词“This”之前没有初始空格。我希望段落对齐,但当我使用时,\justify我在标记段落开头的第一个单词之前丢失了空格。有没有办法解决这种权衡?为了使我的问题更清楚,我在下面发布了一张显示实际文档中段落的图片。

enter image description here

我想要将图像中的单词“The”向右移动以标记一个段落的开始。

答案1

编辑: 重新检查您的 MWE 后,我发现您的问题在于使用 \centering\justify以及放置\author{...}。删除前两个命令并将后者移至正确位置(在之前\maketitle)后,您的 MWE 变为:

\documentclass[10 pt,a4paper,twoside,reqno]{amsart}
\usepackage{amsfonts,amssymb,amscd,amsmath,enumerate,verbatim,calc,graphicx}
\renewcommand{\baselinestretch}{1.2}
\usepackage{bm}
\usepackage{ragged2e}
\textwidth = 12.5 cm
\textheight = 20 cm
\topmargin = 0.5 cm
\oddsidemargin = 1 cm


\usepackage{blindtext}

\begin{document}
\title{\textbf{ON THE REFLECTION PROPERTY OF A CIRCULAR PARABOLOID}}
\author{\textbf{S. Aryan}}
\maketitle

\begin{abstract}
\blindtext
\end{abstract}
\section{Introduction}
\blindtext
\blindtext
\end{document}

enter image description here

相关内容