尝试让等号与边距左对齐,同时将等式的其余部分居中,找到了最佳解决方案这里,但似乎有更好的方法,因为符号每次都在同一个位置。
我的解决方案是:
\begin{align*}
(s + 6.72 + 9.95 j)(s + 6.72 - 9.95 j) \refstepcounter{equation}\tag*{\llap{\makebox[\linewidth][l]{$=$}}}
\end{align*}
答案1
这里尝试使用以下方法实现您想要的效果flalign
:
\documentclass{article}
\usepackage{amsmath}
\newcommand{\insertmath}{\rule{5em}{.5\baselineskip}}
\begin{document}
\begin{flalign*}
&& f(x) = \insertmath && \\
= && (\insertmath)(\insertmath)
\end{flalign*}
\begin{flalign*}
&& & f(x) = \insertmath & \\
= && & (\insertmath)(\insertmath)
\end{flalign*}
\end{document}