の使用中にバグに遭遇したようです。コマンドの直前に環境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
と\section
set の両方が\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}