我正在尝试对齐一个长方程,如下图所示
这是我使用的代码和我的输出
\[
\begin{split}
&
\Biggl[\biggl(1-\frac{1}{1+p^{z}_{t+s}}\biggr) \biggl( \frac{P^{\circ}_{t+s\textbar{t}}(j)}{\Pi^{\theta}_{t-1+s}\smash{\overline{\mathstrut\Pi}}^{1-\theta}_{\phantom{1}} P_{t-1+s}}\Biggr)^{-\frac{\sst 1}{\sst 1+p^{z}_{t+s}}}
\\
&\quad-\mathcal{MC}_{t+s}(j)\biggl(-\frac{1}{1+p^{z}_{t+s}}\biggr) {\biggl( \frac{P^{\circ}_{t+s\textbar{t}}(j)}{\Pi^{\theta}_{t-1+s}\smash{\overline{\mathstrut\Pi}}^{1-\theta}_{\phantom{1}} P_{t-1+s}}}\Biggr)^{-1} \biggl( \frac{P^{\circ}_{t+s\textbar{t}}(j)}{\Pi^{\theta}_{t-1+s} \smash{\overline{\mathstrut\Pi}}^{1-\theta}_{\phantom{1}} P_{t-1+s}}\Biggr)^{-\frac{\sst 1}{\sst 1+p^{z}_{t+s}}} \biggl( \frac{1}{\Pi^{\theta}_{t-1+s} \smash{\overline{\mathstrut\Pi}}^{1-\theta}_{\phantom{1}} P_{t-1+s}}\Biggr)\biggr]Y_{t+s\textbar{t}}
\end{split}
\]
我的输出
答案1
这是一个将长因子分成三行的解决方案。
\documentclass{scrartcl}
\usepackage{amsmath} % for "split" environment
\newcommand\1{\vphantom{1}} % a strut with the height of "1"
\begin{document}
\[
\begin{split}
\Biggl[
&\biggl(1-\frac{1}{1+p^{z}_{t+s}}\biggr)
\biggl( \frac{P^{\circ}_{t+s\mid t}(j)}{\Pi^{\theta}_{t-1+s} \bar{\Pi}_{\1}^{1-\theta} P^{}_{t-1+s}}\biggr)^{-\frac{1}{1+p^{z}_{t+s}}} \\
&-\mathcal{MC}_{t+s}(j) \biggl(-\frac{1}{1+p^{z}_{t+s}}\biggr)
\biggl( \frac{P^{\circ}_{t+s\mid t}(j)}{\Pi^{\theta}_{t-1+s} \bar{\Pi}_{\1}^{1-\theta} P^{}_{t-1+s}}\biggr)^{\!-1} \\
&\qquad\times
\biggl( \frac{P^{\circ}_{t+s\mid t}(j)}{\Pi^{\theta}_{t-1+s} \bar{\Pi}_{\1}^{1-\theta} P^{}_{t-1+s}}\biggr)^{-\frac{1}{1+p^{z}_{t+s}}}
\biggl( \frac{1}{\Pi^{\theta}_{t-1+s} \bar{\Pi}_{\1}^{1-\theta} P^{}_{t-1+s}}\biggr)
\Biggr] Y_{t+s\mid t}
= \dots
\end{split}
\]
\end{document}
答案2
我会重写你的方程式,例如采用以下形式:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\left[(1-A)\left(\frac{B}{C}\right)^{-A} -
\mathcal{MC}_{t+s}(j)
(-A)
\left(\frac{B}{C}\right)^{-1}
\left(\frac{B}{C}\right)^{-A}
\left(\frac{1}{C}\right)^{-1}
\right]Y_{t+s|t} =
\]
where are:
\begin{align*}
A & = \frac{1}{1+p^{z}_{t+s}} \\
B & = P^{\circ}_{t+s|t}(j) \\
C & = \Pi^{\theta}_{t-1+s}\overline{\Pi}^{1-\theta}_{} P_{t-1+s}
\end{align*}
\end{document}
在我看来,这个等式更加清晰,更容易阅读。
编辑: 在第一个版本的答案中放错了位置A,现在也是简化的定义C。