我遇到了同样的问题关联。问题是关于在某处使用 \endgroup。如果我使用以下代码
\usepackage[a4paper,hmargin=1in,top=1.2in,bottom=1in]{geometry}
\usepackage{lipsum}
\usepackage{wrapfig}
\usepackage{pgfplots}
\pgfplotsset{width=10cm,compat=1.9}
\begin{document}
\begingroup
\setlength\intextsep{0pt}
\begin{wrapfigure}{r}{0pt}
\begin{tikzpicture}[scale=0.5]
\draw[step=1cm,very thin] (0,0) grid (13,8);
\end{tikzpicture}
\end{wrapfigure}
\noindent \lipsum[1]
\endgroup
\end{document}
但是,如果我在后面添加一个空行\lipsum[1]
(... like above)
\noindent \lipsum[1]
\endgroup
\end{document}
为什么代码会有差异?如果我用 或 替换此空行\\
,\newline
则\hfill \break
没有任何变化。分组中的“空行”是什么意思?还有其他方法可以填充此空行以使代码像第二张图片中那样工作吗?