在尝试抑制环境中方程式注释中未满框警告时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
在 minipages 和 中都有效\parbox
。重要的是段落末尾的状态。在您的 minipage 测试中,您有额外的括号,用于在段落结束前限定 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}