方程式样式文本+数学左对齐

方程式样式文本+数学左对齐

我知道如果你输入:

       Hello \begin{equation} a+b=hi\end{equation} 

等式会跳到另一行。如果我们把

 \begin{equation} \text{Hello} a+b=hi\end{equation}

Hello 不是左对齐的,也就是说它与公式居中。我们怎样才能将文本缩进 0 并将其包含在公式中?我希望文本 + 数学在一行中,但文本是左对齐的,数学仍然居中。

我之前看到过一些复杂的答案。Latex 开发人员不应该创建这个简单的命令吗?比如说 \lefttag{}?谢谢。

答案1

\begin{flalign} &\text{Hello} &a+b&=hi &&\end{flalign}

应该这么做。

你也可以尝试这个:

\begin{gather}
\intertext{Hello\vspace*{-\dimexpr\baselineskip + \abovedisplayskip\relax}}
a + b = hi
\end{gather}

相关内容