Since 28 Jan, 2019 (several days ago), I've been trying to get text to wrap around any figure in my document and I have several. I cannot get the package wrapfigure to work. I've tried following all the recommendations in the package pdf, and those I've found here, but they aren't working and I can't figure out why.
Sometimes the figure shows up, in about the right spot, but the text overlaps the image, and sometimes there might be a gap for the image on the next page. Other times the figure doesn’t show up at all and no gap is present.
Below is an MWE, including 2 actual images, that does not work.
I have learned one thing. Somehow the package changes is involved but I don't know how or why. I've tried researching this issue, but haven't found anything yet. Any help or insights are greatly appreciated.
Cheers, SL
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% USAGE: PROBLEMS WITH WRAPFIG
% CREATED ON: 2019_01_31
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\documentclass[11pt,oneside]{article}
\usepackage{changes} % TRACKS CHANGES
\usepackage{wrapfig}
\usepackage[margin=.5in]{geometry}
\usepackage{lipsum}
%
\begin{document}
\added{\lipsum[2]}
\lipsum[1]
\added{\lipsum[3]}
\begin{wrapfigure}{L}{0.4\textwidth}
\includegraphics[scale=.75]{CombinedPic_v2}
\caption{\label{Placebo2} ERP}
\end{wrapfigure}
\added{\lipsum[5]}
\lipsum[1]
\begin{wrapfigure}[35]{L}{0.35\textwidth}
\includegraphics[scale=1.5]{Fig_Network1}
\caption{\label{Placebo1} Changes in network connectivity}
\end{wrapfigure}
\lipsum[5]
\added{\lipsum[2]}
\lipsum[1]
\added{\lipsum[6]}
\end{document}
I am working on a deadline so any help is greatly appreciated.
Cheers, SL

