我可以在环境下使用$
方程式$
内部和外部吗?由于这两行,我的所有方程式都向左对齐。请在这方面提供帮助。\intertext{}
flalign
在添加之前,它是正确合理的 wrt 中心
\begin{flalign*} & & \frac{Y(s)}{R(s)}&=\frac{{\omega}^2+{2{\delta}}{\omega}{s}}{s^{2}+2{\delta}{\omega}{s}+{\omega}^{2}} & & \ \end{flalign*}
添加下面的文本后,文本不再居中,而是向左对齐
{\intertext{On comparing}} ${\omega}={\sqrt{K_i}}$ \quad ${\delta}=\frac{K_p}{2\sqrt{K_{i}}}$\
答案1
这两个方程式没有自然对齐点,所以最好使用两个equation*
环境。我不建议将“关于比较”这个短语与第二个方程式放在同一水平。
比较以下结果并做出决定。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Perhaps this is what you'd like to have,
\begin{flalign*}
&& \frac{Y(s)}{R(s)}&=\frac{\omega^{2}+2\delta\omega s}
{s^{2}+2\delta\omega s+\omega^{2}} && \\
&\text{On comparing}
& \omega&=\sqrt{K_{i}} \quad \delta =\frac{K_{p}}{2\sqrt{K_{i}}} &&
\end{flalign*}
but I can't recommend it, because the text should be on a line by itself.
Much better is simply using two equations
\begin{equation*}
\frac{Y(s)}{R(s)}=\frac{\omega^{2}+2\delta\omega s}
{s^{2}+2\delta\omega s+\omega^{2}}
\end{equation*}
On comparing
\begin{equation*}
\omega=\sqrt{K_{i}} \quad \delta =\frac{K_{p}}{2\sqrt{K_{i}}}
\end{equation*}
\end{document}
避免过度使用牙套,我删除了所有不必要的牙套,并添加了一些推荐的牙套。
答案2
flalign
我认为这里没有必要
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{flalign*} & & \frac{Y(s)}{R(s)}&=\frac{{\omega}^2+{2{\delta}}{\omega}{s}}
{s^{2}+2{\delta}{\omega}{s}+{\omega}^{2}} & &\\
\intertext{On comparing}
& & \omega=\sqrt{K_i} \quad \delta & =\frac{K_p}{2\sqrt{K_{i}}} &&
\end{flalign*}
\begin{align*}
\frac{Y(s)}{R(s)}&=\frac{{\omega}^2+{2{\delta}}{\omega}{s}}
{s^{2}+2{\delta}{\omega}{s}+{\omega}^{2}} \\
\intertext{On comparing}
\omega=\sqrt{K_i} \quad \delta & =\frac{K_p}{2\sqrt{K_{i}}}
\end{align*}
\end{document}
您不能使用$
inside ,但是您可以使用flalign
inside 。\intertext
\text
如果您加载mathtools
而不是amsmath
(自行mathtools
加载),您将获得垂直间距更紧密的宏。amsmath
\shortintertext
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{flalign*} & & \frac{Y(s)}{R(s)}&=\frac{{\omega}^2+{2{\delta}}{\omega}{s}}
{s^{2}+2{\delta}{\omega}{s}+{\omega}^{2}} & &\\
\shortintertext{On comparing}
& & \omega=\sqrt{K_i} \quad \delta & =\frac{K_p}{2\sqrt{K_{i}}} &&
\end{flalign*}
\begin{align*}
\frac{Y(s)}{R(s)}&=\frac{{\omega}^2+{2{\delta}}{\omega}{s}}
{s^{2}+2{\delta}{\omega}{s}+{\omega}^{2}} \\
\shortintertext{On comparing}
\omega=\sqrt{K_i} \quad \delta & =\frac{K_p}{2\sqrt{K_{i}}}
\end{align*}
\end{document}