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?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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