在 eqnarray 中使用 numcases

在 eqnarray 中使用 numcases

有人能演示如何同时使用 eqnarray 和 numcases 吗?下面的示例在没有 numcases 的情况下也可以正常工作,但我想分别对案例中的方程式进行编号。

\documentclass[12pt]{article}
\usepackage{cases}

\begin{eqnarray}
f(x) &=& \Theta(x) \\
&=&\begin{cases}
1, & x > 0\\
 0 , & x < 0
\end{cases}
\end{eqnarray}

\end{document}

提前致谢。

答案1

非常特别指定解决方案:

\documentclass[12pt]{article}
\usepackage{amsmath}

\begin{document}

\begin{align}
f(x) &= \Theta(x) \\
     &  \makebox[0pt][l]{\raisebox{-1.6ex}[0pt][0pt]{${}=\bigg\lbrace$}}
        \hspace{2.25em}\makebox[2em][l]{$1$,}  x > 0\\
     &  \hspace{2.25em}\makebox[2em][l]{$0$,}  x < 0
\end{align}

\end{document}

enter image description here

相关内容