写下这个等式

写下这个等式

我想用这种方式写下这个方程式,但一直没有成功。我该如何改进此代码以获得下面的方程式?

\[ DeltaC{t} = \left\{ \begin{array}{ll} 
-1.40- 0.588w_{t-1} - 0.5351\DeltaC_{t-1}+ 0.169\DeltaBC_{t-1} & \mbox{ if $w_{t-1}<- 0.62$} \\
-1.40 - 0.588w_{t-1} - 0.5351\DeltaC_{t-1} + 0.169\DeltaBC_{t-1} & \mbox{$w_{t-1}>0.62$}
\end{array}
\right. \]

在此处输入图片描述

答案1

我认为您想cases从 开始amsmath。此外,\mbox最好使用而不是\text

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[ 
  DeltaC{t} = \begin{cases}
    -1.40- 0.588w_{t-1} - 0.5351\Delta_{t-1}+ 0.169\Delta_{t-1} & \text{if $w_{t-1}<- 0.62$} \\
    -1.40 - 0.588w_{t-1} - 0.5351\Delta_{t-1} + 0.169\Delta_{t-1} & \text{$w_{t-1}>0.62$}
  \end{cases}
\]
\end{document}

由于你的方程式太长,我把它分成两行,并添加了一些空间调整和由 Enrico 进行的微调。(感谢 egreg)。

\documentclass{article}
\usepackage{amsmath}

\newcommand{\DeltaC}[1]{%
  \Delta\pi^{\textnormal{Services}}_{#1}%
}
\newcommand{\DeltaBC}[1]{%
  \Delta\pi^{\textnormal{Goods}}_{#1}%
}


\begin{document}

\[
\DeltaC{t} = \begin{cases}
  -0.03_{(0.08)} - 0.08_{(0.05)} + 0.09_{(0.18)} \DeltaC{t-1} \\
    \qquad{} + 0.12_{(0.03)}\DeltaBC{t-1} + u_{2t}, & \text{if $w_{t-1}<-0.62$,} \\[2ex]
  0.38_{(0.15)} - 0.12_{(0.04)} + 0.40_{(0.07)} \DeltaC{t-1} \\
    \qquad{} + 0.18_{(0.06)}\DeltaBC{t-1} + u_{2t}, & \text{if $ w_{t-1} > 2.2$,}
  \end{cases}
\]
\end{document}

在此处输入图片描述

答案2

您的方程实际上只有一列(但有两行)。但在这种情况下,最好使用cases来自 的环境amsmath

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\Delta\pi_t^\text{Services} =
\begin{cases}
  -0.03_{0.08} - 0.08_{0.05} + 0.09_{0.18} \Delta\pi_{t-1}^\text{Services} + 0.12_{0.03} \Delta\pi_{t-1}^\text{Goods} + u_{2t} & w_{t-1} \leq 2.2 \\
   0.38_{0.15} - 0.12_{0.04} + 0.40_{0.07} \Delta\pi_{t-1}^\text{Services} + 0.18_{0.06} \Delta\pi_{t-1}^\text{Goods} + u_{2t} & w_{t-1} > 2.2
\end{cases}
\]
\end{document}

相关内容