如何获得统一的压痕

如何获得统一的压痕

我在 LaTex 上有以下内容。

First we need to know the equation of the curve. Since it crosses the $x$ axis at $x=1$ and $x=4$, it must be of the form $y=k(x-1)(x-4)$.

当编译时(连同其上方的其他内容),会产生您在图像中看到的结果。

但是,我希望整个内容在“First”处缩进。我在网上查看过,发现建议使用“quote”环境,但我非常喜欢 LaTex 为“First”提供的默认缩进,理想情况下希望每行都是这样。“quote”环境的缩进要大得多……

我该怎么做?如能得到任何帮助我将不胜感激 :)

编辑:澄清一下,我希望 $x=4$ 是“第一个”所在的位置。 在此处输入图片描述

答案1

您可以随意使用。我创建了一个环境,在整个环境中\specindent缩进一定量。这样,我关闭了额外的缩进,因此引入了一个小的缩进来跟踪段落中断。\parindent\parskip

\documentclass{article}
\usepackage{lipsum}
\edef\svparindent{\the\parindent}
\newenvironment{specindent}
  {\par\everypar{\leftskip=\svparindent\relax}\parindent=0pt\relax\parskip=1ex}
  {\vspace{\parskip}\par}
\begin{document}
\lipsum[1]
\begin{specindent}
\lipsum[2-3]
\end{specindent}
\lipsum[4-5]
\end{document}

在此处输入图片描述

相关内容