像 Fleqn-option 一样的左对齐仅适用于特定方程式

像 Fleqn-option 一样的左对齐仅适用于特定方程式

我想将一些方程式左对齐。(注意:我想对齐方程式本身,而不是方程式内部的代码。)

我有以下示例代码:

\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}

\begin{equation}
\text{I want to left-align this equation}
\end{equation}

\begin{equation}
\text{and this one,}
\end{equation}

\begin{equation}
\text{but not this one and others.}
\end{equation}

\end{document}

我该如何实现这一点?方程式不一定要左调整到文本左边框,更重要的目标是使它们彼此对齐。

答案1

您可以使用flalignflalign*环境数学

\documentclass{minimal}
\usepackage{amsmath}
\begin{document}
\noindent The quick brown fox jumps over the lazy dog.
\begin{equation*}
A = B
\end{equation*}
\begin{flalign*}
C = D &&
\end{flalign*}
\begin{flalign*}
E = F &&
\end{flalign*}
\end{document}

\split在方程环境中不起作用

答案2

我想展示一个eplain版本:

\input eplain
\leftdisplays
$$ \hbox{I want to left-align this equation} \eqno(1.1) $$
$$ \hbox{and this one,} $$
\centereddisplays
$$ \hbox{but not this one and others} \eqno(1.2) $$
\bye

因为文档

然而,在单个出版物中同时存在居中和左对齐显示通常是糟糕的排版。

相关内容