答案1
你需要\ignorespacesafterend
;但你可以考虑这个comment
包裹。
\documentclass{article}
\usepackage{comment}
\newenvironment{nothing}
{\setbox0\vbox\bgroup}
{\egroup\ignorespacesafterend}
\begin{document}
Hello, this is some text.
\begin{nothing}
This is nothing.
\end{nothing}
More text.
Hello, this is some text.
More text.
Hello, this is some text.
\begin{comment}
This is nothing.
\end{comment}
More text.
Hello, this is some text.
More text.
\end{document}