![如果使用 \sloppy,则边距段落对齐](https://linux22.com/image/468052/%E5%A6%82%E6%9E%9C%E4%BD%BF%E7%94%A8%20%5Csloppy%EF%BC%8C%E5%88%99%E8%BE%B9%E8%B7%9D%E6%AE%B5%E8%90%BD%E5%AF%B9%E9%BD%90.png)
请参阅我的 MWE。我希望 \marginnote 段落与我调用它的点对齐。在内边距中,我有一个包含非常大(46pt)文本的环绕图形环境。如果我不使用 \sloppy,边距段落和主段落的文本会重叠。如果我使用 \sloppy,我会遇到对齐问题。请问我做错了什么?谢谢。
\documentclass[10pt]{book}
\usepackage{lipsum}
\usepackage{marginnote}
\renewcommand*{\marginfont}{\scriptsize \sffamily}
\renewcommand\raggedrightmarginnote{}
\renewcommand\raggedleftmarginnote{}
\usepackage[
paperwidth=160mm, paperheight=240mm,
textheight=18cm,
textwidth=8cm,
inner=2cm, marginparwidth=2.5cm, marginparsep=0.5cm]
{geometry}
\usepackage{wrapfig}
\usepackage{fontspec}
\begin{document}
%\sloppy
\newpage
\paragraph{First}
\begin{wrapfigure}{i}{0.64\textwidth}%
\vspace{5pt}
\noindent {\fontsize{46pt}{46pt}\selectfont \hspace{-5pt} Big}
\end{wrapfigure}
This\marginnote{I want this to be aligned. \lipsum[1]} is a paragraph. \lipsum[1]
\newpage
\paragraph{First}
\begin{wrapfigure}{i}{0.64\textwidth}%
\vspace{5pt}
\noindent {\fontsize{46pt}{46pt}\selectfont \hspace{-5pt} Big}
\end{wrapfigure}
This\marginnote{I want this to be aligned. \lipsum[1]} is a paragraph. \lipsum[1]
\newpage
\paragraph{Forth}
\begin{wrapfigure}{i}{0.64\textwidth}%
\vspace{5pt}
\noindent {\fontsize{46pt}{46pt}\selectfont \hspace{-5pt} Big}
\end{wrapfigure}
This\marginnote{I want this to be aligned. \lipsum[1]} is a paragraph. \lipsum[1]
\end{document}