Graphics, Figures & Tables ⇒ How to wrap a list (itemize) around a figure?
How to wrap a list (itemize) around a figure?
is there a package that can wrap text from an itemized / enumerated list around a figure--preferrably a non-floating figure/table?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How to wrap a list (itemize) around a figure?
Code: Select all
\documentclass{article}
\usepackage{picins}
\usepackage{mdwlist}
\begin{document}
\noindent Here is the main body of the text. Say some
stuff here.
\begin{enumerate}
\parpic[r]{\begin{tabular}{|c|c|c|c|}
\hline
1 & 2 & 3 & 4\\
\hline
5 & 6 & 7 & 8\\
\hline
9 & 10 & 11 & 12\\
\hline
13 & 14 & 15 & 16\\
\hline
\end{tabular}}
\item This here is item number 1. It is a good item
and should be wrapped around a table.
\item This here is item number 2. It is a good item
and should be wrapped around a table.
\item This here is item number 3. It is also a very
good item but probably doesn't need wrapping.
\suspend{enumerate}
\resume{enumerate}
\item This here is item number 4. It is also a very
good item but probably doesn't need wrapping.
\end{enumerate}
\noindent The list has now ended. Say some more stuff
here.
\end{document}
Re: How to wrap a list (itemize) around a figure?

-
- Posts: 1
- Joined: Sun Jul 27, 2014 9:38 pm
Re: How to wrap a list (itemize) around a figure?
Please reply.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm