I found myself perplex at the fact that the same command works a different line spacing when written inside an empty environment.
Could somebody explain why, or at least give me a method to make the line spacing inside the environment as tiny as it is outside?
This is the code:
\documentclass{article}
\newenvironment{footnotepar}{}{}%Empty environment
\begin{document}
\begin{footnotepar} %The line spacing here is too large
\fontsize{8pt}{8pt}\selectfont This is a blind text. This is a blind text.
This is a blind text. This is a blind text.
This is a blind text. This is a blind text.
This is a blind text. This is a blind text. This is a blind text.
\end{footnotepar}
\fontsize{8pt}{8pt}\selectfont This is a blind text. This is a blind text.
This is a blind text. This is a blind text.
This is a blind text. This is a blind text.
This is a blind text. This is a blind text. This is a blind text.
\end{document}
It outputs:
LaTeX Version: This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex 2019.8.29)


\end{footnotepar}. The problem is well known, I’ll try to find a question that already copes with it. – GuM Sep 10 '19 at 16:15\parin the environment solves the problem. By the way adding\parin the definition is a bit more elegant than having to leave a space when using the environment—this is more error prone. – loved.by.Jesus Sep 10 '19 at 16:19