方程编号放置

方程编号放置
\documentclass[12pt,a4paper]{article}
\usepackage{amsmath}\usepackage{amssymb}
\begin{equation}
  R_{jt,L} = \left\{ \begin{array}{ccl} R_{jt}  & ; & \mbox{if $P_{jt-1} > P_{jt-1,L}$; } \\ 0 & ; & \mbox{$r_{ft}$ otherwise;} \end{array} 
\end{equation}
\begin{equation}
\hat{H} = - \frac{\hbar^2}{2m}\nabla^2 +\hat{V}(x).
\end{equation}
\end{document}

问题是,方程式没有出现在边缘,正如我得到的方程式编号一样。

输出为在此处输入图片描述

我希望等式右边为零,因为我们通常得到边际值。

答案1

使用包mathtools 本身加载amsmath并修复一些错误:

\documentclass[12pt,a4paper]{article}
\usepackage{mathtools}
\usepackage{amssymb}
\begin{document}

\begin{equation}
 R_{jt, L} = 
\begin{cases}
   R_{jt} & \text{;  if }P_{jt-1} > P_{jt-1,L}  \\ 
        0 & \text{; } r_{ft} \text{ otherwise}
\end{cases} 
\end{equation}

\begin{equation}
\hat{H} = - \frac{\hbar^2}{2m}\nabla^2 +\hat{V}(x).
\end{equation}

\end{document}

在此处输入图片描述

如果您希望两个方程式都与用途一致=

\begin{align}
 R_{jt, L} &= 
\begin{cases}
   R_{jt} & \text{;  if }P_{jt-1} > P_{jt-1,L}  \\ 
        0 & \text{; } r_{ft} \text{ otherwise}
\end{cases} \\[15pt]
%
\hat{H} &= - \frac{\hbar^2}{2m}\nabla^2 +\hat{V}(x).
\end{align}

在此处输入图片描述

相关内容