wrapfig のバグの可能性あり (セクション開始直前)

wrapfig のバグの可能性あり (セクション開始直前)

の使用中にバグに遭遇したようです。コマンドの直前に環境wrapfigを使用すると、動作が悪くなりますが、環境の後にテキストを追加すると問題は解決するようです。wrapfig\section{...}wrapfig

\documentclass[12pt,a4paper]{article}
\usepackage{todonotes}

\usepackage{lipsum}
\usepackage{wrapfig}
\usepackage{fullpage}

\begin{document}

\lipsum[1]

\begin{wrapfigure}{r}{0.6\textwidth}
\missingfigure{}
\caption{a figure}
\end{wrapfigure}

%This text fixes it.
\section*{Lorem}


\lipsum[2-3]

\end{document}

これは与えるここに画像の説明を入力してください

最後の段落の余分なスペースに注意してください。ただし、「このテキストで修正します」のコメントを外すと、

ここに画像の説明を入力してください

ちょっと検索してみましたが、これについては何も見つかりませんでした。何が起こっているのでしょうか?

答え1

のドキュメントでは、リスト環境の直前にwrapfigを配置しないように指示されていますwrapfigure。ただし、 の問題は\section同じです。wrapfigure\sectionset の両方が\everypar「失敗」を意味します。

追加するだけwrapfigure セクションのタイトル。

\documentclass[12pt,a4paper]{article}
\usepackage{todonotes}

\usepackage{lipsum}
\usepackage{wrapfig}
\usepackage{fullpage}

\begin{document}

\lipsum[1]

\section*{Lorem}

\begin{wrapfigure}{r}{0.6\textwidth}
\missingfigure{}
\caption{a figure}
\end{wrapfigure}

\lipsum[2-3]

\end{document}

ここに画像の説明を入力してください

関連情報