Wrapfigure не производит рисунок

Wrapfigure не производит рисунок

Мой код

\documentclass{book}
\usepackage{wrapfigure}
\newtheorem{problem}{P}[chapter]
\begin{document}
A circle is drawn in a sector of a larger circle
\begin{problem}
\begin{wrapfigure}{r}{0.5\textwidth}
\centering
\includegraphics[width=0.38\textwidth]{TrigFig23.pdf}
\end{wrapfigure}
\noindent
of radius $r$, as shown in the adjacent figure. 
The smaller circle is tangent to the two bounding radii and the arc of the sector. Find the radius of the smaller circle.
\end{problem}
\end{document}

Этот код вообще не выдает цифру (и не показывает ошибку). Я wrapfigтакже использовал пакет. Пожалуйста, помогите!!

решение1

С двумя мини-страницами вместо wrapfig:

введите описание изображения здесь

\documentclass{book}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\newtheorem{problem}{P}[chapter]
\begin{document}

\begin{problem}
\begin{minipage}[t]{0.5\textwidth}
A circle is drawn in a sector of a larger circle of radius $r$, as shown in the adjacent figure. 
The smaller circle is tangent to the two bounding radii and the arc of the sector. Find the radius of the smaller circle.
\end{minipage}%
\begin{minipage}[t]{0.5\textwidth}
\centering
\includegraphics[width=0.38\textwidth,valign=t]{example-image}
\end{minipage}
\end{problem}
\end{document}

решение2

Я предлагаю такой вариант макета, с insboxнабором простых пакетов TeX-макросов:

\documentclass{book}
\usepackage{graphicx}
\input{insbox}
\newtheorem{problem}{P}[chapter]

\begin{document}

\begin{problem}\leavevmode%
\InsertBoxR{-1}{\includegraphics[width=0.38\textwidth]{example-image}}\par\noindent
A circle is drawn in a sector of a larger circle of radius $r$, as shown in the adjacent figure.
The smaller circle is tangent to the two bounding radii and the arc of the sector. Find the radius of the smaller circle.
\end{problem}

\end{document}

введите описание изображения здесь

решение3

Поскольку «проблема» заключается в конфликтующем окружении, которое препятствует размещению там иллюстраций, а «wrapfigure» размещается в начале абзацев, вы можете создать поддельный абзац с помощью~~\vspace*{-\baselineskip}

\documentclass{book}
\usepackage{wrapfig}
\usepackage{graphicx}
\newtheorem{problem}{P}[chapter]
\begin{document}
A circle is drawn in a sector of a larger circle

\begin{wrapfigure}{r}{0.5\textwidth}
\centering
\includegraphics[width=0.38\textwidth]{example-image-a.pdf}
\end{wrapfigure}
~~\vspace*{-\baselineskip}
\begin{problem}
\noindent
of radius $r$, as shown in the adjacent figure. 
The smaller circle is tangent to the two bounding radii and the 
arc of the sector. Find the radius of the smaller circle.
\end{problem}
\end{document}

Связанный контент