如何在两个方程式之间添加垂直点?

如何在两个方程式之间添加垂直点?

如何在两个方程式的左右箭头之间添加一个垂直点,如下图所示?

在此处输入图片描述

这是我使用的代码:

\[
{\tilde{\pi}}_{x,t}-\theta_{x}\tilde{\pi}_{x,t-1}=\frac{(1-\zeta_x \beta)(1 \zeta_x)}{\zeta_x (\widetilde{rmc}_{x,t}+\tilde{v}_{x,t})+\beta(E_t\tilde{\pi}_{x,t+1}-\theta_{x}\tilde{\pi}_{x,t})
\]

\Leftrightarrow


\Leftrightarrow


\[
{\tilde{\pi}}_{x,t}=\frac{\theta_{x}}{1+\beta \theta_{x}}\tilde{\pi}_{x,t-1}+\frac{\beta}{1+\beta \theta_{x}}E_{t}\tilde{\pi}_{x,t+1}+\frac{(1-\zeta_x \beta)(1-\zeta_x)}{\zeta_x(1+\beta \theta_{x})}(\widetilde{rmc}_{x,t}-\widetilde{P}^{X*}_t-\tilde{rs_t}+\tilde{v}_{x,t})
\]

我的输出:

在此处输入图片描述

答案1

您可以使用align环境(来自amsmath)和包\vdotswithin中的命令mathtools

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\begin{align*}
  {\tilde{\pi}}_{x,t} & - \theta_{x}\tilde{\pi}_{x,t-1} = 
  \frac{(1-\zeta_x \beta)(1 \zeta_x)}{\zeta_x} (\widetilde{rmc}_{x,t}+\tilde{v}_{x,t})+\beta(E_t\tilde{\pi}_{x,t+1}-\theta_{x}\tilde{\pi}_{x,t})\\
    & \Leftrightarrow\\
    & \vdotswithin{\Leftrightarrow}\\
    & \Leftrightarrow\\
    {\tilde{\pi}}_{x,t} & =\frac{\theta_{x}}{1+\beta \theta_{x}}
    \tilde{\pi}_{x,t-1} + 
    \frac{\beta}{1+\beta \theta_{x}} E_{t} \tilde{\pi}_{x,t+1} + 
    \frac{(1-\zeta_x \beta)(1-\zeta_x)}{\zeta_x(1+\beta \theta_{x})}(\widetilde{rmc}_{x,t}-\widetilde{P}^{X*}_t-\tilde{rs_t}+\tilde{v}_{x,t})
  \end{align*}

\end{document}

输出将如下所示:

在此处输入图片描述

答案2

构建计算的另一种方法是使用gatheraligned来自amsmath包的计算。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
{\tilde{\pi}}_{x,t}-\theta_{x}\tilde{\pi}_{x,t-1}
=\frac{(1-\zeta_x \beta)(1 \zeta_x)}{\zeta_x} (\widetilde{rmc}_{x,t}+\tilde{v}_{x,t})
+\beta(E_t\tilde{\pi}_{x,t+1}-\theta_{x}\tilde{\pi}_{x,t})\\
\Leftrightarrow\\
\vdots\\
\Leftrightarrow\\
\begin{aligned}
{\tilde{\pi}}_{x,t}={}
&\frac{\theta_{x}}{1+\beta \theta_{x}}\tilde{\pi}_{x,t-1}
 +\frac{\beta}{1+\beta \theta_{x}}E_{t}\tilde{\pi}_{x,t+1}\\
&+\frac{(1-\zeta_x \beta)(1-\zeta_x)}{\zeta_x(1+\beta \theta_{x})}
  (\widetilde{rmc}_{x,t}-\widetilde{P}^{X*}_t-\tilde{rs_t}+\tilde{v}_{x,t})
\end{aligned}
\end{gather*}
\end{document}

相关内容