Working with wrapfig I have encountered some strange behavior involving the use of commands (of acro package) to start a paragraph (Similar to this: lettrine and wrapfig). Wrapfig does not detect the start of the paragraph and even worse, it does not end.
Is there any way around this? Thanks.
A MWE
\documentclass[12pt]{memoir}
\usepackage{wrapfig}
\usepackage{acro}
\usepackage{lipsum}
\DeclareAcronym{bosscha}{ short = {Bosscha}, long = {Johannes Bosscha Jr\acdot}, }
\begin{document}
\begin{wrapfigure}{R}{0.4\textwidth}
\centering
\rule{3cm}{7cm}
\caption{V.S.M. van der Willigen}
\end{wrapfigure}
\ac{bosscha}, 17 years of age, \lipsum
\end{document}
EDIT:
Using the solution in the answer with InsertBoxR I have encountered some problems with the layout.
Script:
\InsertBoxR{0}{\begin{minipage}[t]{0.4\textwidth}
\centering \includegraphics[width=0.95\textwidth]{./Figures/06vdWilligen}
\captionof{figure}{\acl{willigen}}
\end{minipage}}[2]
Result:

Wrapfig looks like this (if we workaround the list/acro problem.
PS: I have encountered similar problems with wrapfig and the color package.


\acis some kind of a list-like environment. I used the following (ugly) workaround just for debugging (it works):\newcommand{\longForm}{Johannes Bosscha Jr} \newcommand{\shortForm}{Bosscha} \DeclareAcronym{bosscha}{short = {\shortForm}, long = {\longForm\acdot},}and instead of\ac{bosscha} ...I used:\longForm{} (\shortForm), 17 years of age, \lipsum– lAtExFaN Jun 24 '17 at 16:07