インデントやスペースのない環境の最初の段落

インデントやスペースのない環境の最初の段落

環境内のテキストの最初の段落をインデントしない環境を作成しようとしています。

私の最新の試みとそれに対応する出力を以下に示します。ご覧のとおり、最初の環境では、最初のインデントされていない段落に小さな水平スペースが追加されました。2 番目の環境では追加されませんでしたが、%の後に不要な文字を追加することによってのみこれを実現\begin{env}できました。明示的な文字を使用せずに、この不要なスペースを省略するにはどうすればよいですか%?

最小限の例の結果

\documentclass{minimal}

\newenvironment{env}{%
    \noindent%
}{%
}%

\begin{document}
Some text. Some text. Some text. Some text. Some text. Some text.
Some text. Some text. Some text. Some text. Some text. Some text.
Some text. Some text. Some text. Some text. Some text. Some text.

\begin{env}
    First paragraph inside environment.

    Second paragraph inside environment.
\end{env}

\begin{env}%
    First paragraph inside environment.

    Second paragraph inside environment.
\end{env}
\end{document}

答え1

使用できますignorespaces

\documentclass{article}

\newenvironment{env}{%
\noindent\ignorespaces%
}{%
}%

\begin{document}
Some text. Some text. Some text. Some text. Some text. Some text.
Some text. Some text. Some text. Some text. Some text. Some text.
Some text. Some text. Some text. Some text. Some text. Some text.

\begin{env}
    First paragraph inside environment.

    Second paragraph inside environment.
\end{env}

\begin{env}%
    First paragraph inside environment.

    Second paragraph inside environment.
\end{env}
\end{document}

ここに画像の説明を入力してください

関連情報