答案1
TeX 只会在它认为必要的地方引入换行符,并且aaaaaaaaaaaaaaa
不会表示可以通过正确连字符连接的单词。
如果您希望对证明中的行进行评论,请将评论设置在t
固定宽度的 op-aligned 框中。下面我使用了\parbox
宽度为 20em 的 (根据需要调整)。tabular
如果需要,您还可以使用 或其他构造:
\documentclass{article}
\usepackage{amsmath}
%\usepackage{showframe} Just to show the text frame
\begin{document}
\begin{align*}
f(x) &= ax^2 + bx + c \qquad \parbox[t]{20em}{\raggedright\strut
Here is a lengthy description or comment that relates to
the expression on the right.\strut} \\
&= d
\end{align*}
\end{document}