When you try to change the text wrap to the list, the picture goes down. The picture shows how it looks in Google Books, is it possible to implement something similar in LaTeX?
1 answer
As indicated in the wrapfig package wrapfig , the wrapfig environment will not work correctly inside any lists or near them. But what you indicated does not really require text flow. In your example, the drawing is next to the list. And this can be achieved in different ways. The simplest thing is to arrange both the drawing and the list inside the minipage environments and place them nearby. For example:
\documentclass{article} \usepackage[cp1251]{inputenc} \usepackage[russian,english]{babel} \usepackage{blindtext} \usepackage[demo]{graphicx} \usepackage{caption} \begin{document} \blindtext[2] \vskip5mm \begin{minipage}{0.45\linewidth} \begin{center} \includegraphics[width=0.9\linewidth]{birds} \end{center} \captionof{figure}{Birds} \end{minipage} \hfill \begin{minipage}{0.45\linewidth} \blinditemize[7] \end{minipage} \vskip5mm \blindtext[2] \end{document} The result is something like:
And a few more comments on the example. First , the demo parameter of the graphicx package instead of drawing draws a black rectangle, while allowing you to compile the document without the drawing itself. Naturally, this parameter will need to be removed to work with the actual picture. Second : I have an example of a list and text \blinditemize and \blindtext from the blindtext package. This package is not needed in a real document.

