Hello,
is there a package that can wrap text from an itemized / enumerated list around a figure--preferrably a non-floating figure/table?
Graphics, Figures & Tables ⇒ How to wrap a list (itemize) around a figure?
How to wrap a list (itemize) around a figure?
Last edited by Montag on Wed Dec 29, 2010 11:14 pm, edited 1 time in total.
OS: Win 7 64-bit LaTeX: MikTeX 2.9 64-bit Editor: TXC 1 RC1
NEW: TikZ book now 40% off at Amazon.com for a short time.

How to wrap a list (itemize) around a figure?
You can use the picins package. The only problem is that sometimes it can mess up the indentation of the surrounding list, but the \suspend and \resume commands of the mdwlist package let you fix that. For example, here's how a 4-item list can be wrapped around a 4x4 table:
Without the \suspend and \resume commands, the list in the above example would have a different indentation for the fourth item. You may have to play with different possibilities depending on your list.
Code: Select all
Code, edit and compile here:
\documentclass{article}\usepackage{picins}\usepackage{mdwlist}\begin{document}\noindent Here is the main body of the text. Say somestuff here.\begin{enumerate}\parpic[r]{\begin{tabular}{|c|c|c|c|}\hline1 & 2 & 3 & 4\\\hline5 & 6 & 7 & 8\\\hline9 & 10 & 11 & 12\\\hline13 & 14 & 15 & 16\\\hline\end{tabular}}\item This here is item number 1. It is a good itemand should be wrapped around a table.\item This here is item number 2. It is a good itemand should be wrapped around a table.\item This here is item number 3. It is also a verygood item but probably doesn't need wrapping.\suspend{enumerate}\resume{enumerate}\item This here is item number 4. It is also a verygood item but probably doesn't need wrapping.\end{enumerate}\noindent The list has now ended. Say some more stuffhere.\end{document}
Re: How to wrap a list (itemize) around a figure?
Thank you, yes, that works, but I think I'll stick to another experimental solution I found: two minipages right next to each other. That works too and with some fine tuning, it look quite alright. 

OS: Win 7 64-bit LaTeX: MikTeX 2.9 64-bit Editor: TXC 1 RC1
-
- Posts: 1
- Joined: Sun Jul 27, 2014 9:38 pm
Re: How to wrap a list (itemize) around a figure?
How to do this for afigure with caption.
Please reply.
Please reply.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
How to wrap a list (itemize) around a figure?
It would be better to state your problem/wish in a new topic. You increase your chance for an answer by providing a minimal working example.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.