请参阅我的 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}