環境内の方程式の注釈でボックスが不足しているという警告を抑制しようとしてalign
、 を試しています。 内では機能しますが、 環境内では機能しない\raggedright
ことがわかりました。なぜでしょうか?\parbox
minipage
% !TEX TS-program = lualatexmk
% !TEX encoding = UTF-8 Unicode
\documentclass{article}
\usepackage{amsmath}
\newcommand*{\reason}[1]{&&\begin{minipage}{3cm}{\raggedright\small{#1}}\end{minipage}}
\newcommand*{\thereason}[1]{&&\parbox[c]{3cm}{\raggedright\small{#1}}}
\begin{document}
\begin{align}
\begin{split}
a &= b + c + d + e + f + g + h + i + j + k + l \\
&\quad + m + n + o + o + q + r + s + t + u + v \\
&\quad + w + x + y + z
\end{split} \reason{a really stupidly long equation split over multiple lines} \\
\begin{split}
a &= b + c + d + e + f + g + h + i + j + k + l \\
&\quad + m + n + o + o + q + r + s + t + u + v \\
&\quad + w + x + y + z
\end{split} \thereason{a really stupidly long equation split over multiple lines}
\end{align}
\end{document}
答え1
\raggedright
は、ミニページでも と同様に機能します\parbox
。重要なのは段落の最後の状態です。ミニページのテストでは、段落が終了する前に、raggedright 効果を区切る追加の中括弧があります。
\begin{minipage}{3cm}{\raggedright\small{#1}}\end{minipage}
すべきである
\begin{minipage}{3cm}\raggedright\small{#1}\end{minipage}
できるかもしれないが
\begin{minipage}{3cm}{\raggedright\small{#1}\par}\end{minipage}