wrapfigure と中括弧

wrapfigure と中括弧
\documentclass{article}
\usepackage{wrapfig}


\begin{document}

    \begin{wrapfigure}{r}{3cm}
        \centering
        \rule{3cm}{3cm}
    \end{wrapfigure}
 g,sd; agmgts bsgfs shgsnhg  {\bf snhbfx} fdbhsmn jnnsndg ndsngas gngdfznagk dfhbf
gsgfsh shgfs

{Here is the problem!} "Observe that after using the wrapfigure command, when I am writing something which has to be kept inside the curly braces something unsusal happening." How to resolve this?

\end{document} 

答え1

実際には、問題が発生することが予想されます。

画像の周囲に複数の段落を流すには、テキストの行数が画像を通過するのに必要な行数を超えていることが確実になるまで、新しい段落を渡すために実行するコードwrapfigを使用する\everypar必要があります。

あなたの場合はどうなりますか? 2 番目の段落はグループ内で始まるため、グループが終了すると段落の形状の設定が失われます。

この問題の解決方法は?おそらく、次のようなことを望んだからでしょう

{\bf Here is the problem!}

しかし、問題の原因はあなた自身です。2 文字のフォント変更コマンドは 20 年以上前から廃止されています。

決して\bf、または類似のコマンドを使用してください\it。これらは 20 年以上前から非推奨になっています。20 年以上前から非推奨になっているコマンドを使用すると、予期しない問題が発生する可能性があります。

この愚痴はまだまだ続けられますが、3回で十分だと思います。 ;-)

\documentclass{article}
\usepackage{wrapfig}

\begin{document}

\begin{wrapfigure}{r}{3cm}
\centering
\rule{3cm}{3cm}
\end{wrapfigure}

g,sd; agmgts bsgfs shgsnhg  \textbf{snhbfx} fdbhsmn jnnsndg ndsngas gngdfznagk dfhbf
gsgfsh shgfs

\textbf{Here is the problem!} "Observe that after using the wrapfigure command, when I am writing
something which has to be kept inside the curly braces something unsusal happening." How to resolve
this?

\end{document}

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

{...}他の目的で本当に必要な場合は、\mbox{}段落の先頭で に関連している場合には、開き中括弧の前に を追加するだけですwrapfigure

関連情報