I'm creating some custom environments. One of them will be placed in \wrapfigure and second one will contain text which should wrap around the first one.
When I'm adding \vspace between paragraphs, blank space under \wrapfiture environment gets higher.
Is there any way of removing this blank space?
I can't specify exact number of lines that \wrapfigure will take, because it can vary.I would like to be able to configure space between parahraphs in my second environment.
Below I prepared MWE of text without \vspace and with \vspace:
\documentclass[a4paper,10pt]{article}
\usepackage{wrapfig}
\usepackage{blindtext}
\begin{document}
\begin{wrapfigure}{l}{0.29\linewidth}
\begin{enumerate}
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\end{enumerate}
\end{wrapfigure}
\blindtext[1]\\
\blindtext[1]\\
\blindtext[1]
\end{document}
\documentclass[a4paper,10pt]{article}
\usepackage{wrapfig}
\usepackage{blindtext}
\begin{document}
\begin{wrapfigure}{l}{0.29\linewidth}
\begin{enumerate}
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\item Test item
\end{enumerate}
\end{wrapfigure}
\blindtext[1]\\
\vspace{50pt}
\blindtext[1]\\
\vspace{50pt}
\blindtext[1]
\end{document}



\blindtext[1]\\is simply wrong, never use\\at the end of a paragraph it generates warnings and makes very poor output. Or here you are not ending the paragraph at all, but simply inserting space between lines of the same pararaph. – David Carlisle Dec 03 '19 at 21:22