Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>wrapfig is the best i've found, however, you need to put the wrapfig code above the paragraph you want it to wrap into:</p> <pre><code>\usepackage{wrapfig} \begin{wrapfigure} \includegraphics... \end{wrapfigure} This is the paragraph of text you want the figure to "wrap" into... etc etc. </code></pre> <p>If you put the wrapfig code under the paragraph you want to wrap into, it will obviously wrap into the next paragraph, producing an undesirable result.</p> <p>you also mention a 'column' which makes me think you are using a multi-column layout, which probably isn't going to work that well with wrapfig. </p> <p>When asking a specific question about latex, you should include a minimal working example, that is, enough of your preamble and body code/text so that people can recreate your problem. </p> <p>EDIT: Ah. i see what you mean. wrapfig can take an optional line height argument:</p> <pre><code>\begin{wrapfigure}[line-height]{r}{width} </code></pre> <p>where line-height is a positive integer.</p> <p>your solution would probably look like this: </p> <pre><code>\begin{wrapfigure}[10]{r}{2.5in} \centering \includegraphics[width=2in]{governator.jpg} \end{wrapfigure} </code></pre> <p>EDIT #2: wrapfig/floatflt + enumerate, itemize = not working. the packages are incompatible with one another. For a "wrapfigure" effect with an environment, i.e., enumerate, itemize, etc etc., You should put the environment in a minipage and the graphic in in a minipage, then set the two minipages next to each other. something to the effect of (i put them in a tabular environment as well):</p> <pre><code>\begin{tabular}{l l} \begin{minipage}{0.5\textwidth} \begin{enumerate} \item \end{enumerate} \end{minipage} &amp; \begin{minipage}{0.5\textwidth} \includegraphics... \end{minipage} \end{tabular} </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload