When I used the command \parpic of picins package inside enumerate environment, it made the trouble that the label item was not co-linear. I don't want change package so help me to fix it. Thanks.
Here is the sample code:
\documentclass{article}
\usepackage{picins}
\usepackage{lipsum}
\begin{document}
\begin{enumerate}
\parpic[r]{\fbox{\parbox[4cm]{4cm}{\lipsum[4]}}}
\item \lipsum[4]
\item \lipsum[4]
\item \lipsum[4]
\item \lipsum[4]
\item \lipsum[4]
\end{enumerate}
\end{document}


enumitem, and use the optionbegin{enumerate}[wide=0pt], which makes the list left margin the same as the text left margin. If it's fine for you, it is rather simple to modify your code. – Bernard May 09 '21 at 12:53