In my thesis, I need to include the descriptions of 79 items in the appendix. Each description takes about half a page, and includes a picture. I want to always have two of these per page, and have the text (which will be an enumeration) wrap around the picture.
I had imagined that I can create minipages and place two of them per page. First, I realized that I can't have a float within a minipage or another similar environment, so maybe I can't use a minipage or a similar environment? Second, without the minipage, wrapfig places the picture in some weird place. How do I get my layout to look like the mockup?
Here a MWE just to have the text, it compiles to something very different from what I want:
\documentclass[a4paper]{article}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{mwe}
\begin{document}
\section{The name (preferably as a section)}
\begin{wrapfigure}{r}{0.5\textwidth}
\includegraphics[width=0.48\textwidth]{example-image}
\end{wrapfigure}
\begin{description}
\item[Color] red
\item[Year] 2005
\item[Something else] This is a feature which needs a longer explanation. It will wrap around.
\item[Foo] bar
\item[And another long item] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\end{description}
\section{The name of the second one}
\begin{wrapfigure}{r}{0.5\textwidth}
\includegraphics[width=0.48\textwidth]{example-image}
\end{wrapfigure}
\begin{description}
\item[Color] green
\item[Year] 2010
\item[Something else] This is a feature which needs a longer explanation. It will wrap around.
\item[Foo] bar
\item[And another long item] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\end{description}
\end{document}


wrapfigurepackage, or thedescriptionlist for that matter, I am asking what is a way to create that layout that works, with some reasonable effort (not having to manually position each row or something like that). – rumtscho May 27 '16 at 16:11wrapfigand lists are officially unsupported, I think. You cannot wrap a figure with a list environment (itemize,enumerate, etc) without using some particular code. ConTeXt is an exception though. Possible duplicate: [Wrapfigure in an enumerate environment. duplicate] – Alenanno May 27 '16 at 16:52;-)– egreg May 27 '16 at 17:13