<div dir="ltr"><div>wrapfig can't possibly work if you put it in an \mbox, It can't work if you put it in a _group_ never mind a box as it needs to set the paragraph shape of the following paragraph.<br><br></div>The comments in the file say:<br><br><br>  - If you put a wrapfigure in a parbox or a minipage, or any other type<br>    of grouping, the text wrapping should end before the group does.<br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On 11 December 2015 at 15:17, Hefferon, James S. <span dir="ltr"><<a href="mailto:jhefferon@smcvt.edu" target="_blank">jhefferon@smcvt.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Hello everyone,<br>
<br>
I am trying to put graphics in a document using wrapfig.  I want a graphic to be wrapped on one side of the page on odd pages, and on the other side on even pages, so it would be on the outside in both cases.<br>
<br>
To determine if the current page is odd I use the changepage package's \checkoddpage and \ifodd construct, as in the mwe below.<br>
<br>
But the mwe document below does this:<br>
<br>
* if wrapfig is commented out then I get just what I expect, a bunch of K's followed by a bunch of O's at the start, where I invoked the macro \margingraphic. That is what I expect.<br>
<br>
* if wrapfig is uncommented then the K's appear where I put them, but the O's now appear at the very end of the document, after \lipsum[8] (and on the left).  That is not what I expect.  (I certainly compiled twice.)<br>
<br>
I am stumped.  I'd be most grateful for a push in the right direction.<br>
<br>
Thanks,<br>
Jim<br>
<br>
\documentclass{article}<br>
\usepackage{graphicx, caption}<br>
\usepackage{changepage}<br>
\usepackage{wrapfig}<br>
<br>
\makeatletter<br>
% Figures sticking into the margin.<br>
% \margingraphic -- graphic that sticks out into margin<br>
% #1 width of graphic (before it is shifted)<br>
% #2 graphic filename<br>
% #3 caption<br>
\newcommand{\margingraphic}[3][0.2\textwidth]{%<br>
  \mbox{\checkoddpage\ifoddpage% changepage docs recommend the \mbox{..}<br>
    KKKKKK<br>
      \begin{wrapfigure}{R}{0.3\textwidth}<br>
        OOOOO<br>
      \end{wrapfigure}<br>
    \else%<br>
      % \begin{wrapfigure}{L}{0.3\textwidth}<br>
          EEEEEE<br>
      % \end{wrapfigure}<br>
    \fi}%<br>
}<br>
\makeatother<br>
<br>
\usepackage{lipsum}<br>
\begin{document}<br>
\margingraphic{ctan_lion.png}{test caption}<br>
\lipsum[1-5]<br>
<br>
\lipsum[6-8]<br>
\end{document}<br>
<br>
_______________________________________________<br>
TeX FAQ: <a href="http://www.tex.ac.uk/faq" rel="noreferrer" target="_blank">http://www.tex.ac.uk/faq</a><br>
Mailing list archives: <a href="http://tug.org/pipermail/texhax/" rel="noreferrer" target="_blank">http://tug.org/pipermail/texhax/</a><br>
More links: <a href="http://tug.org/begin.html" rel="noreferrer" target="_blank">http://tug.org/begin.html</a><br>
<br>
Automated subscription management: <a href="http://tug.org/mailman/listinfo/texhax" rel="noreferrer" target="_blank">http://tug.org/mailman/listinfo/texhax</a><br>
Human mailing list managers: <a href="mailto:postmaster@tug.org">postmaster@tug.org</a><br>
</blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature"><a href="http://dpcarlisle.blogspot.com/" target="_blank">http://dpcarlisle.blogspot.com/</a></div>
</div>